Classes set by K2BTools when using row selection

When using Row selection in actions, the developer can change how the grid's appearance when the user is actively selecting elements (at least one element is selected).

To do that, K2BTools adds the "K2BTools_GridSelecting" class to one of the divs containing the grid.

The developer can add CSS selectors based on that class to customize the grid's appearance, for example, to change the cells background when selecting the following rule may be used:

.K2BTools_GridSelecting TR TD {
background-color: #fef;
}