Hiding columns Server Side processing
Hiding columns Server Side processing
emelianenko
Posts: 18Questions: 0Answers: 0
Hello
This code to hide the colum actually breaks the application and no row is shown. Dont know why, just copied it and pasted it. I m using version 1.7.2
[code]
$(document).ready(function() {
$('#ejemplo1').dataTable( {
"aoColumns": [
/* id*/ { "bVisible": false },
/* from */ null,
/* through */ null,
/* to*/ null,
/* duration */ null,
/* to*/ null,
/* price */ null
]
"bProcessing": true,
"bServerSide": true,
"bJQueryUI": true,
"sAjaxSource": "datatables/php/server_processing_data.php"
} );
} );
[/code]
anybody knows why ?
regards
This code to hide the colum actually breaks the application and no row is shown. Dont know why, just copied it and pasted it. I m using version 1.7.2
[code]
$(document).ready(function() {
$('#ejemplo1').dataTable( {
"aoColumns": [
/* id*/ { "bVisible": false },
/* from */ null,
/* through */ null,
/* to*/ null,
/* duration */ null,
/* to*/ null,
/* price */ null
]
"bProcessing": true,
"bServerSide": true,
"bJQueryUI": true,
"sAjaxSource": "datatables/php/server_processing_data.php"
} );
} );
[/code]
anybody knows why ?
regards
This discussion has been closed.