如何获取 GridPanel 的选定行 ID
Posted
技术标签:
【中文标题】如何获取 GridPanel 的选定行 ID【英文标题】:How to get the selected row id of a GridPanel 【发布时间】:2014-11-23 09:42:16 【问题描述】:我有一个名为 GridPanel1 的 GridPanel 和一个用于删除 GridPanel 的选定行的按钮, 我想通过单击 ext 按钮获取选定的行 id 并将 id 发送到 directMethod。 我的代码是:
var removeEmployee = function ()
// CompanyZ.Delete(id); // Here I need the GridPanel selected row id
console.log(mygrid);
谁能帮帮我?
【问题讨论】:
【参考方案1】:请使用:
grid.getSelectionModel().getSelection()[0].getId()
【讨论】:
以上是关于如何获取 GridPanel 的选定行 ID的主要内容,如果未能解决你的问题,请参考以下文章