Datatable not rendering.
Datatable not rendering.
Hi I have some data that does not render in Datatable. Data with less coloumns renders ok. A zip file containing the failing html is attached. I have sent a datatable debugger output which is uxufaj.
Any suggestions as to how to fix it would be appreciated.
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
You are getting this error:
Looks like you have 29 columns but have only defined 28 with
columns:You need to add one more column definition. You can use
nullif you don't want to define anything for one of the columns. Or you can replace yourcolumnswith a more simplercolumnDefs, something like this:Kevin
Thank you that did the trick.