Page 1 of 1

[ANGULAR] How to disable cell selection?

Posted: Mon Jul 05, 2021 11:50 am
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?


Re: [ANGULAR] How to disable cell selection?

Posted: Mon Jul 05, 2021 11:58 am
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.