【发布时间】:2013-09-17 16:29:51
【问题描述】:
我使用网格面板和监听器
listeners: {
,itemdblclick: function (grid, record, item, index, e, eOpts ) {
// how to get cellIndex
}
}
我尝试获取 celIndex 但没有。如何在 itemdblclick 函数中获取 cellIndex 谢谢
【问题讨论】:
我使用网格面板和监听器
listeners: {
,itemdblclick: function (grid, record, item, index, e, eOpts ) {
// how to get cellIndex
}
}
我尝试获取 celIndex 但没有。如何在 itemdblclick 函数中获取 cellIndex 谢谢
【问题讨论】:
您可以使用celldblclick 事件代替itemdblclick。
listeners: {
celldblclick: function (table, td, cellIndex, record, tr, rowIndex, e, eOpts) {
}
}
【讨论】: