Not hidding columns
Not hidding columns
stormlifter
Posts: 15Questions: 0Answers: 0
[code]
oTable = $('#transaction_table').dataTable({
"bJQueryUI": true,
"oLanguage": {
"sURL": "{{MEDIA_URL}}lang/dt_EN.txt"
},
"sPaginationType": "full_numbers",
"bStateSave": true,
"aoColumns": [
{ "sType": "html" },
{ "sType": "html" },
{ "sType": "html" },
null,
{ "bSearchable": false, "bVisible": false },
{ "bSearchable": false, "bVisible": false },
null,
null
],[/code]
I'd most my table, but it has a lot of logical statements and nonsense.
My table shows without an errors from DataTables though. Issue is none of the columns are hiding.
oTable = $('#transaction_table').dataTable({
"bJQueryUI": true,
"oLanguage": {
"sURL": "{{MEDIA_URL}}lang/dt_EN.txt"
},
"sPaginationType": "full_numbers",
"bStateSave": true,
"aoColumns": [
{ "sType": "html" },
{ "sType": "html" },
{ "sType": "html" },
null,
{ "bSearchable": false, "bVisible": false },
{ "bSearchable": false, "bVisible": false },
null,
null
],[/code]
I'd most my table, but it has a lot of logical statements and nonsense.
My table shows without an errors from DataTables though. Issue is none of the columns are hiding.
This discussion has been closed.