Ich fange gerade mit ExtJS an. Ich versuche, einen Wert aus einer ausgewählten Zelle zu lesen.
Ich benutze ein EditorGrid und das Store sieht so aus :
my_store = new Ext.data.JsonStore({
root: 'topics',
totalProperty: 'totalCount',
idProperty: 'details_id',
fields: [
{name : 'index', type : 'int'},
{name : 'inactive', type : 'int'},
{name : 'c_1', type : 'string'},
{name : 'c_2', type : 'string'},
{name : 'c_3', type : 'string'},
{name : 'c_4', type : 'string'}
],
proxy: new Ext.data.ScriptTagProxy({
url: 'my_proxy_url'
})
});
Zurzeit verwende ich Folgendes, um die Zeilen und Spalten der ausgewählten Zelle abzurufen :
var column = grid.getSelectionModel().selection.cell[0];
var row = grid.getSelectionModel().selection.cell[1];
Wie kann ich den Wert einer ausgewählten Zelle im Grid lesen und diesen Wert ändern ?