gpt4 book ai didi

javascript - ExtJS 网格选择 getSelectionModel() 似乎不起作用

转载 作者:行者123 更新时间:2023-11-28 08:12:06 27 4
gpt4 key购买 nike

我在网格选择方面遇到了奇怪的行为:

我有一个简单的网格,但是当我选择一条记录时,我会:

var grid = this.getExternrulesgrid();  
var records = grid.getSelectionModel().getSelection();
var rec = this.getSelectedExternRule();

但由于某种原因,记录为空?!

你知道为什么吗?

谢谢!!

enter image description here enter image description here enter image description here

最佳答案

Their are various ways you can get the selected record.

1.您可以使用selectionchange事件监听器。

selectionchange( this, selected, eOpts ){
}

这里,selected:选定的记录。

2.在某些操作上使用选择模型

selected=[];
selctn = grid.getSelectionModel();
var s = selctn.getSelection();
Ext.each(s, function(item) {
selected.push(item);
});

您将在选定数组中获取选定记录的数组。

Note: Check your grid object.

关于javascript - ExtJS 网格选择 getSelectionModel() 似乎不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24064769/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com