my grid allowing to select multiple row selection that is once i click on cell and press shift+arrow down button it allows me to select next set of records i wanted to disable this functionality how it can be done,on grid level how to catch keypress events and return false once shift+arrow down button is pressed
相关问题
- Sencha Touch Uncaught typeError: undefined is not
- How I'll create a model from json file? (ExtJS
- Decimal precision in an EXTJS grid
- How to add an Extra button on Extjs grid header me
- Downloading multiple files into a Zip file Javascr
相关文章
- Sencha Ext.define Uses vs Requires
- Scrolling issues with ExtJS 5 app inside IFrame
- Sencha Touch in WebView
- load different views into viewport
- Abort an ext js grid store ajax call
- Disabling the timezone conversion in ExtJS
- Sencha CMD: 404 errors when running built producti
- GXT EditorGrid: choose cell editor type on a cell
Grids behave as you want by default. Make sure you have NOT set
multiSelect
orsimpleSelect
to true.For ExtJS 3.x add this to the grid properties:
selModel: new Ext.grid.rowSelectionModel({singleSelect:true})
The accepted answer seems to be a bit out of date. For version ExtJS4.x use this solution :
Or just use this :
Firstly, it's hard to understand your question without any punctuation. Secondly, without any code example, it's even harder to understand a question without any punctuations.
Here's my guess answer of your question: