Page 1 of 1

[VUE 2] Disable of short cut keyes

Posted: Fri Mar 24, 2023 8:46 am
by thejas.pateel

Hi ,
When i select row by pressing ctrl key .Multiple row is selecting.. How to avoid this thing ? in my application only one row should be selected not multiple rows .


Re: [VUE 2] Disable of short cut keyes

Posted: Fri Mar 24, 2023 9:41 am
by alex.l

Hi,

You need to specify that in selectionMode

selectionMode: { multiSelect : false },

https://bryntum.com/products/grid/docs/api/Grid/view/mixin/GridSelection#config-selectionMode


Re: [VUE 2] Disable of short cut keyes

Posted: Fri Mar 24, 2023 10:25 am
by thejas.pateel

Hi,
It worked thanks