Our blazing fast Grid component built with pure JavaScript


Post by striker »

Hello.
I want to disable cell selection - only allow by rows.

I found this:
https://www.bryntum.com/docs/grid/#Grid/view/mixin/GridSelection#config-selectionMode

row : Boolean
select rows

cell : Boolean
select cells

so in GridConfig I put:

      selectionMode: {
        cell: false,
        row: true
      }
      

But this is not working.
Can you provide me a solution?

Attachments
grid.png
grid.png (3.16 KiB) Viewed 538 times

Post by mats »

What you see is just a cell outline showing you what focused cell you are on (or you won't know how to keyboard navigate). You can remove this outline with basic CSS.


Post Reply