-
13 Aug 2007 9:31 AM #1
How to turn off row selection in Grid?
How to turn off row selection in Grid?
I do not want any row/column selection in a Ext.Grid. How I can achieve this?
Thanks
-
13 Aug 2007 1:46 PM #2
Could try something like:
Code:grid.on('rowclick', function(g, index, e) { e.stopEvent(); }); grid.on('rowcontextmenu', function(g, index, e) { e.stopEvent(); }); grid.on('rowdblclick', function(g, index, e) { e.stopEvent(); });
-
12 Mar 2012 1:22 PM #3
You can now do this: http://docs.sencha.com/ext-js/4-0/#!/api/Ext.grid.View-cfg-disableSelection
Edit: You can use disableSelection on a grid, too.word


Reply With Quote