This topic is locked

Highlighting selected multi-select checkboxes

3/19/2019 10:04:02 PM
PHPRunner Tips and Tricks
admin

When you use multiselect checkbox-based lookup wizard it is easy to lose track of which options are selected and which are not. We can use some better indication of selected options and here is how.
Add the following code to Custom CSS section under Editor screen:

input[type=checkbox]:checked + span {

color: #f00;

}


And here is how it looks on the web page.

P
PaulM 6/27/2019



When you use multiselect checkbox-based lookup wizard it is easy to lose track of which options are selected and which are not. We can use some better indication of selected options and here is how.
Add the following code to Custom CSS section:

input[type=checkbox]:checked + span {

color: #f00;

}


And here is how it looks on the web page.


I've added this code to the gird_checkbox properties in designer but it doesn't do anything. Am I adding it in the right place?

admin 6/27/2019

No, you need to add it to Custom CSS on Editor screen.