XF 2.2 Add custom class to xf:datarow

mjda

Well-known member
I'm not sure if this could be a bug, but I'm not able to add a custom class to the table row. Here's what I'm using, currently.

Code:
<xf:datarow class="dataList-row--current">

Adding a class works just find in <xf:cell> Any ideas on how I can accomplish this?
 
Solution
I think one of these should do the trick.

HTML:
<xf:datarow rowtype="current">

HTML:
<xf:datarow rowclass="dataList-row--current">
Top Bottom