Hiding column not working with server side processing
Hiding column not working with server side processing
Is there a particular way to implement column hiding when processing in the server?
The way I am trying it is this:
"aoColumns": [
/*idlot*/ { "bSearchable": false,
"bVisible": false},
/*description*/ null,
/*creation date*/ null,
/*reference*/ null
]
but it is not working at the moment.
Thanks in advance for your help
The way I am trying it is this:
"aoColumns": [
/*idlot*/ { "bSearchable": false,
"bVisible": false},
/*description*/ null,
/*creation date*/ null,
/*reference*/ null
]
but it is not working at the moment.
Thanks in advance for your help
This discussion has been closed.
Replies
Thanks
There is a good reason that this only works with 1.5 - server-side processing was a new feature introduced in 1.5 (1.4 simply fails completely with it). :-). Good to hear you got it working.
Allan