Ext js3.2的GridPanel的selModel属性设置Ext.grid.AbstractSelectionModel

如果没有设置selModel或者sm,文档说默认为

Ext.grid.RowSelectionModel。

见如下:粗体
selModel  : Object
Any subclass of  Ext.grid.AbstractSelectionModel that will provide the selection model for the grid (defaults toExt.grid.RowSelectionModel if not specified).
但通过
var sm=userGrid.getSelectionModel();
var sel=sm.getSelected();
就会报错has no method ‘getSelected’,而 RowSelectionModel含有getSelected方法。

你可能感兴趣的:(Ext)