How can I add a class name to rows only if rowGroup exist more than 1 row?
How can I add a class name to rows only if rowGroup exist more than 1 row?
AnuruddhaSL
Posts: 1Questions: 1Answers: 0
Link to test c
ase:
Debugger code (debug.datatables.net):
Error messages shown:
Description of problem:
This discussion has been closed.
Answers
You'll need to use
rowGroup.startRender
for this - it gives you the number of rows in the group, so you could add a class if that is greater than 1 - e.g.Allan