Selection in EJ2 JavaScript Grid control
13 Apr 20231 minute to read
Customizing the row selection background
Row selection background can be customized using below CSS.
.e-grid td.e-selectionbackground {
background-color: #deecf9;
}
Customizing the cell selection background
Cell selection background can be customized using below CSS.
.e-grid td.e-cellselectionbackground {
background-color: #deecf9;
}
Customizing the column selection background
Column selection background can be customized using below CSS.
.e-grid .e-columnselection {
background-color: #deecf9;
}