extjs4 grid 配置了多选 但是没有效果怎么回事啊

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了extjs4 grid 配置了多选 但是没有效果怎么回事啊相关的知识,希望对你有一定的参考价值。

alias : "widget.studentgrid",
title:"学生情况",
id:'stgrid',
multiSelect : true,
selModel :
selType : "checkboxmodel"
,

参考技术A selModel : 
    selType : 'checkboxmodel',
    mode : 'SIMPLE'
,

去掉 multiSelect : true,  这个是用 Control 建来多选的。

extjs里如何自动选中第一行数据

grid.getSelectionModel().selectFirstRow();//用这个就可以了,前提是你要有SelectionModel的实现

看下api:

Class Ext.grid.GridPanel:

getSelectionModel () : SelectionModel 

返回通过 selModel 配置项配置的选择模型。 如果没有配置选择模型... 
返回通过 selModel 配置项配置的选择模型。 如果没有配置选择模型,此方法将会创建并返回一个 RowSelectionModel. 
参数:
无。 

返回值:
SelectionModel

 

Class Ext.grid.RowSelectionModel 或者 Class Ext.grid.CheckboxSelectionModel

selectFirstRow () : void 

选中grid中的第一行。 
选中grid中的第一行。 
参数: 
无。 
返回值: 
void

selectRow (  Number row ,  [ Boolean keepExisting ],  [ Boolean preventViewNotify ] ) : void 

选中一行。 在选中一行之前,检测选择模型是否 被锁定 然后触发... 

选中一行。 在选中一行之前,检测选择模型是否 被锁定 然后触发 beforerowselect事件。 如果这些校验通过,行被选中并接着触发 rowselect 和 selectionchange事件。 

参数: 

row : Number 

需要选中的行序号 

keepExisting : Boolean 

(可选) 设置为true将保持当前选中的记录 

preventViewNotify : Boolean 

(可选)指定为true可以阻止通知视图(禁止刷新选中的外观) 

返回值: 

void

selectRows (  Array rows ,  [ Boolean keepExisting ] ) : void 

选中多行。 

选中多行。 

参数: 

rows : Array 

Array of the indexes of the row to select 

keepExisting : Boolean 

可选 设置为true将保持当前选中的记录 (默认值为 false) 

返回值: 

void

参考技术A oad( [options] )
Loads data into the Store via the configured proxy. This uses the Proxy to make an asynchronous call to whatever storage backend the Proxy uses, automatically adding the retrieved instances into the Store and calling an optional callback if required. Example usage:
store.load(
scope: this,
callback: function(records, operation, success)
// the operation object
// contains all of the details of the load operation
console.log(records);
);
有一个callback函数,可以该回调函数中执行Grid选取第一条记录的操作。
Store.load(
callback: function(rec, oper, success)
if(success)
Ext.getCmp('Gridid').getSelectionModel().select(0,true);


);
参考技术B 什么组件或者面板自动选中第一行啊?

以上是关于extjs4 grid 配置了多选 但是没有效果怎么回事啊的主要内容,如果未能解决你的问题,请参考以下文章

Extjs中Grid中实现多选,相当于按着Ctrl键实现多选

Extjs4.1 Grid-如何在 itemdblclick 函数中获取 cellIndex

网格分组extjs4中子表的布局

Extjs4.0中 在 grid.Panel里添加复选框,但是如何可以取消那个可以全选的总的那个复选框

ExtJS 4.1 如何更改网格面板标题高度

WPF Datagrid - 行的编程选择似乎打破了多选(特别是shift-click多选)