server side
server side
Swetha9090
Posts: 28Questions: 5Answers: 0
in DataTables
Is there a way to send thead from server side
This question has an accepted answers - jump to answer
Answers
The
<thead>
needs to be present before you initialise the table, but you can do an initial ajax call to get that data along with the header. This example here is doing something similar - it's building the columns dynamically based on the Ajax response - you could construct the<thead>
in a similar way,Colin
Are there any more examples?
There aren't other examples. Please ask more specific questions. The
thead
is built from thecolumns.title
setting.Kevin