Print Row Grouping on drawCallback
Print Row Grouping on drawCallback
I am currently using datatables 1.10.10 and buttons 1.1.2 with buttons print plugin to enable printing features.
I am noticing that all my rendered data is included in the print except for the row groupings that I render using the "drawCallback" option. The row groupings I am referring to are mentioned here: http://datatables.net/examples/advanced_init/row_grouping.html
It seems the printing feature does not handle "drawCallback" additions. How might I get the row groupings to be included in my print result?
Thank you.
Replies
Unfortunately there is no option to include the row grouping information in the print view at the moment. This is something that I hope to address in future, but it currently would require custom code using the
customize
option of theprint
button (i.e. do the row grouping in the print view).Allan