Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/extjs/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
ExtJS使用渲染器获取新旧值_Extjs - Fatal编程技术网

ExtJS使用渲染器获取新旧值

ExtJS使用渲染器获取新旧值,extjs,Extjs,我有4列的网格。在一列中的4列中,我使用了渲染器函数 renderer :function(value) {return Ext.String.format('<input type=text name="sm name " width=5px value={1}>', value, value) renderer:function(value){return Ext.String.format(“”,value,value) 使用行编辑器,我可以得到修改后的值和旧值,但是使用这

我有4列的网格。在一列中的4列中,我使用了渲染器函数

renderer :function(value) {return Ext.String.format('<input type=text name="sm name " width=5px value={1}>', value, value)
renderer:function(value){return Ext.String.format(“”,value,value)
使用行编辑器,我可以得到修改后的值和旧值,但是使用这个输入框,可以得到修改后的值和旧值吗


请在此提出建议。

我得到了相关帮助,问题现在已经解决。感谢您所做的一切。我只想告诉您解决方案,因为其他人可能需要它。我使用了

var Grid=Ext.getCmp("EquipmentPartBO_GridComponentId_GridID");
    var store=Grid.getStore();
    var editedRecords = Grid.getStore().getUpdatedRecords();

在我查找网格特定列中的值时使用了单元格编辑器。

我不明白您的意思。是否要在行编辑器中显示列中的值?