Is there a standard way to not show header if theres no data in table
You would need to use either drawCallback or the draw event and check how many rows are in the table (page.info()) and then show or hide the table as required.
drawCallback
draw
page.info()
Allan
It looks like you're new here. If you want to get involved, click one of these buttons!
Answers
You would need to use either
drawCallback
or thedraw
event and check how many rows are in the table (page.info()
) and then show or hide the table as required.Allan