is it possible to specify in aaData array which is used to build the table if a column have to be visible hidden ? Or if it have to be done after the creation of the table ?
You can use the API to set the column visibility after initialisation (column().visible()), however, it isn't something that you can specify in aaData as such. You could provide the information needed in the JSON data in a different property and then use the API in initComplete perhaps.
Answers
You can use the API to set the column visibility after initialisation (
column().visible()
), however, it isn't something that you can specify in aaData as such. You could provide the information needed in the JSON data in a different property and then use the API ininitComplete
perhaps.Allan
Hello Allan,
Ok it's what I've done already.
Thank you for your help anyway.