ExtgridEditorGridPanel afterEdit事件,就是每次编辑完一个列之后就提交到后台进行修改 *** 作
传回的参数有egrid - grid本身。This grid
erecord - 正在编辑的record。The record being edited
efield - 正在编辑的字段名。The field name being edited
evalue - 正在设置的值(value)。The value being set
eoriginalValue - 在编辑之前的原始值。The original value for the field, before the edit
erow - grid行索引。The grid row index
ecolumn - grid行索引。The grid column index
listeners:{
afterEdit: function(e){
erecord 正在编辑的record。
}
efield - 正在编辑的字段名
evalue - 正在设置的值(value)。
eoriginalValue - 在编辑之前的原始值。
你看下Ext的API,我看了下Ext 11的API
GridPanel是没有selModel这个属性的
你可以使用EditorGrid的getSelectionModel()getSelections();
获取到的是一个record对象数组
以上就是关于ExtJs4 获取grid.panel中的被修改数据,该怎么处理全部的内容,包括:ExtJs4 获取grid.panel中的被修改数据,该怎么处理、在Ext中,怎样得到GridPanel中被选中的数据、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)