Search found 31 matches

Yes, I would expect it to maintain selection unless you were clicking on a row. If it helps, I was trying to replicate this ExtJS Grid setup which seems to behave how I was expecting. https://fiddle.sencha.com/fiddle/3pag var store = Ext.create('Ext.data.Store', { fields: ['name', 'email', 'phone'],...

So just to confirm, it's not just clicking on the row directly that toggles the selection

ClickingOnRow.png
ClickingOnRow.png (124.92 KiB) Viewed 184 times

it's clicking anywhere will cause the row to toggle

ClickingOnGrid.png
ClickingOnGrid.png (91.01 KiB) Viewed 184 times

Thanks,
Tim

I have a grid configured with selectionMode: {deselectOnClick: true} If you have a small number of rows and select a row and then click anywhere inside the grid but NOT on a grid row, the toggle behavior still happens. Is that right? I assumed this config was to allow you to click on a row and then ...

Yes, that makes sense. I was hoping there might be some kind of flag I was missing but I'll go with that. Thanks for confirming!

Our grid is configured with: selectionMode: { checkbox: true, showCheckAll: true } We are looking to override the default behavior of the checkAll selection event. We added a beforeSelectionChange listener to the grid but it does not look like there is any different in the event arguments to help us...

I'm using:
Google Chrome: Version 114.0.5735.134 (Official Build) (64-bit)
Windows 11 Pro v22H2

Here the 'Name' and 'Food' columns seem mis-aligned.

Thanks,
Tim

It looks like when I used align: 'right' in a grid column config, both the grid column header and grid contents are right aligned but if I use align: 'end', only the grid contents are right aligned but the grid column header stays left aligned. I would have expected that they would both behave the s...
Is there any way to be able to copy text that is shown in the Row Expander section? We are using it to show a small table of data and our users would like to be able to copy and/or select the text in this area but it seems like the events are being stopped. I tried to look at the rowExpander code bu...
It looks like in BryntumGrid.vue and BryntumGridBase.vue the columns prop changed from: "@bryntum/grid-vue": " 5.2.10" columns : { type : [ColumnStore, Array, Object], default : undefined }, to "@bryntum/grid-vue": " 5.3.0" columns : { type : [ColumnStore, Obj...