3.2.0

Disable rowselect mode.

I have defined Edit column template as you specified in the one of the previous topics and assigned this column to the Grid to make it editable. In row select mode borders between the cells are highlighted. It does not look well.
Alex, could you clarify please how to disable row select mode for the grid?
February 25,
Here is an example how to modify the selection style:

.active-selection-true, .active-selection-true .active-row-cell {
color: red!important;
background-color: yellow!important;
}

To disable it completely use

obj.setAction("selectRow", null);
obj.setEvent("onkeydown", null);

Alex (ActiveWidgets)
February 25,

This topic is archived.

See also:


Back to support forum