Extjs-如何用鼠标右键选择网格中的行
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Extjs-如何用鼠标右键选择网格中的行相关的知识,希望对你有一定的参考价值。
This refers to Ext JS version 3 !
// add a listener to the grid and add the following lines this.on('rowcontextmenu', function(grid, row, e) { grid.selectedNode = grid.store.getAt(row); // we need this if((row) !== false) { this.getSelectionModel().selectRow(row); } ... and the rest of your code ... }, this);
以上是关于Extjs-如何用鼠标右键选择网格中的行的主要内容,如果未能解决你的问题,请参考以下文章
如何在 extjs 4 中选择网格面板行作为 HTMLELEMENT