GridView - Sample 5: RowDecorators

In the documentation about the GridView control, there is this sample 5 that shows how to clcik on a row, and it also changes the color of the row on which the cursor is over.

Is it possible to see an example of the css class used int this sample?

In the sample, the class used is called “clickable”.

The color change on hover is done purely with CSS, there is no DotVVM mechanism behind that. Something like this:

tr:hover { 
    background-color: something; 
}

Thank you, I had an issue with my css class but the tag !important solved it.