RowGroup emptyDataGroup option behavior
RowGroup emptyDataGroup option behavior
I found something unexpected when using RowGroup.
When a row's data point is empty string and emptyDataGroup is null, startRender is still called for the group. I had assumed that startRender would be skipped. Perhaps it should be.
PS - I tried to add this as a comment on the option's page but got an error.
This discussion has been closed.
Replies
@allan can comment one whether he thinks
rowGroup.startRendershould run for this case. In the meantime you can usereturn "";in the case thegroupvalue is an empty string. For example:https://live.datatables.net/yenefati/1/edit
Kevin