Columns number
Columns number
hi Allan, my yable contain 42 columns and when i use server side processing dataTable even dodn't send the request to server when i have so ,uch columns. If i have 41 and less columns everything is ok.
[code]
"fnServerData": function ( sSource, aoData, fnCallback ) {
var ch="";
for(var i=0; i
[code]
"fnServerData": function ( sSource, aoData, fnCallback ) {
var ch="";
for(var i=0; i
This discussion has been closed.
Replies
See this for more information: http://stackoverflow.com/questions/417142/what-is-the-maximum-length-of-a-url
You might want to try a browser which does not limit and see if your table works then.
Thanks
[code]
{"name:""mDataProp_0","name":0}
[/code]
like above DataTable send by each column ....
By default, DataTables uses GET, which creates a long URL. You can use fnServerData to override the default method and use POST instead. POST does not have this length restriction since the parameters are sent in the header rather than the URL.
thanks for response, i'll try!
Regards,
Allan