-1

我使用网格面板和监听器

listeners: {
   ,itemdblclick: function (grid, record, item, index, e, eOpts ) {
        // how to get cellIndex
   }
}

我尝试获取 celIndex 但什么也没有。如何在 itemdblclick 函数中获取 cellIndex 谢谢

4

1 回答 1

0

您可以使用celldblclick事件而不是itemdblclick.

listeners: {
   celldblclick: function (table, td, cellIndex, record, tr, rowIndex, e, eOpts) {

   }
}
于 2013-09-17T16:37:51.687 回答