When have multiple cells selected having multi-range selection, a different class will be applied, so if needed it may allow to set a different style.
Multi-range selected rows have the class
extended-selection, similar to what happens with the single selection cells, the style of the checked rows (
wj-checked) can have a different style as well as the current selected row, which has the class
wj-state-selected.
HTML structure for header with a multiple rows, having groups:
<div class="wj-row">
<div aria-selected="false" class="wj-cell">
<input type="checkbox" class="wj-cell-check">
</div>
<div aria-selected="false" class="wj-cell Bold extended-selection">
55042180LL
</div>
<div aria-selected="false" class="wj-cell Text_right Orange">
¥2
</div>
<div aria-selected="false" class="wj-cell">
€12,456,789.10
</div>
</div>
<div class="wj-row wj-checked">
<div aria-selected="false" class="wj-cell wj-alt">
<input type="checkbox" class="wj-cell-check">
</div>
<div aria-selected="false" class="wj-cell wj-alt Bold extended-selection">
55042180LL
</div>
<div aria-selected="false" class="wj-cell wj-alt Text_right Orange">
¥2
</div>
<div aria-selected="false" class="wj-cell wj-alt">
€12,456,789.10
</div>
</div>
<div class="wj-row">
<div aria-selected="false" class="wj-cell">
<input type="checkbox" class="wj-cell-check">
</div>
<div aria-selected="true" class="wj-cell Bold">
55042180LL
</div>
<div aria-selected="true" class="wj-cell Text_right Orange extended-selection">
¥2
</div>
<div aria-selected="true" class="wj-cell wj-state-active extended-selection">
€12,456,789.10
</div>
</div>
<div class="wj-row wj-checked">
<div aria-selected="false" class="wj-cell wj-alt">
<input type="checkbox" class="wj-cell-check">
</div>
<div aria-selected="false" class="wj-cell wj-alt Bold">
55042180LL
</div>
<div aria-selected="false" class="wj-cell wj-alt Text_right Green extended-selection">
¥12
</div>
<div aria-selected="false" class="wj-cell wj-alt extended-selection">
€12,456,789.10
</div>
</div>
55042180LL
¥2
€12,456,789.10
55042180LL
¥2
€12,456,789.10
55042180LL
¥2
€12,456,789.10
55042180LL
¥12
€12,456,789.10
CSS applied:
// GridContainer.css
/* Multi-range selection */
.extended-selection.wj-cell:not(.wj-header):not(.wj-group):not(.wj-state-selected):not(.wj-state-multi-selected) {
background: rgba(128, 173, 191, 0.67);
color: #fff;
}
/* Multi-range Selected checked rows */
.wj-row.wj-checked .extended-selection.wj-cell:not(.wj-header):not(.wj-group):not(.wj-state-selected):not(.wj-state-multi-selected) {
background: rgba(128, 173, 191, 0.84);
color: #fff;
}
/* Links color when selected */
.extended-selection a,
.extended-selection a:link,
.extended-selection a:visited {
color: #fff;
}