Grid in 8.2 with SelectionMode.MULTI

Hi,

Does anyone know how to remove an additional caption in the selection column ?


grid = new Grid<>();
grid.setSizeFull();
grid.setSelectionMode(SelectionMode.MULTI);

First colum has in cells text “Selects row number …”

mb
40301.png

Hi,
I remember there was another thread on this but I was not able to find it.
If I’m not wrong the text “Selects row number …” is there for accessibility reasons, but it should be hidden by a css rule in theme (.v-assistive-device-only-label label).
What Vaadin version are you using?
Have you a custom theme? If so try to recompile it

HTH
Marco

Thanx Marco.

I was using custom jar vaadin-themes from 8.1.4 version (with another version of Roboto font included in extended encoding). After switching to 8.2 version forgot about that. Good example against not using custom jars.

Thanx again.

mb