我想获取所选行的姓氏字段。
这根本不起作用:
users.getSelectionModel()。getSelections();
最佳答案
users.getSelectionModel().getSelection();
怎么样?getSelections()
在ExtJS3中使用。在ExtJS4中,他们决定对语法进行一些改进:ExtJS4 docs for Ext.selection.Model
我想获取所选行的姓氏字段。
这根本不起作用:
users.getSelectionModel()。getSelections();
最佳答案
users.getSelectionModel().getSelection();
怎么样?getSelections()
在ExtJS3中使用。在ExtJS4中,他们决定对语法进行一些改进:ExtJS4 docs for Ext.selection.Model