How to implement a css class

0
Hi, In datagrid a line gets a blue background when it is selected. I want to use this nice feature in the list view as well.  I see that the class is  "selected" when controled in the inspection. But I can't find it in style folders. how can I find it and use it in dynamic class section or anywhere else?  
asked
1 answers
0

Hi,

To highlight the selected row in the list view you can create your own custom.scss file and you can give some class to your listview like custom-listview and give this styling in your custom file

.custom-listview {li { & .selected {yourbgcolor}}}

Let me know if you need further help.

Good luck!

answered