ExtJS使用渲染器获取旧值和新值

时间:2012-01-24 13:53:29

标签: extjs

我有4列Grid。在一列中的4列中,我使用了渲染器功能

renderer :function(value) {return Ext.String.format('<input type=text name="sm name " width=5px value={1}>', value, value)

使用行编辑器,我得到修改后的旧值但使用此输入框,是否可以获取修改后的值和旧值?

请在这里建议。

1 个答案:

答案 0 :(得分:1)

我得到了帮助,问题现在解决了。谢谢你的一切。我只是想告诉你解决方案,因为其他任何人可能都需要这个。我用过

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

并使用了单元格编辑器,因为我正在寻找Grid特定列中的值。