CSS on datatable selected subrow

Is there a way to change the styling on a datatable subrow if the row is selected?

I can change the style for all subrows, though I don’t see that there is a separate style for selected subrows when I inspect it in Chrome.

Maybe I am just missing it.

Hello,
Subrow can be defined as a function (as well as any data template)
Using such definition, you can create a dynamic template and return the result (a string with HTML code) depending on any condition.
For example, you can check whether the parent row is selected.
https://webix.com/snippet/353a242f
If you want to change the size of subrows, please use the subRowHeight property instead of CSS.
https://webix.com/snippet/a5c3d35b

Thank you, this looks like it will work for me.