Resize not working using ColReorderWithResize, re-ordering works
Resize not working using ColReorderWithResize, re-ordering works
I cannot figure out why resizing of my cols isn't working. I can't find any information on this site about any pre-requesties either. This is my initi of my table:
[code]
oTable = $('#mytickettable').dataTable( {
"oLanguage": {
"sUrl": "http://" + hostname + "/modules/core/localization/locale/sv_SE/LC_MESSAGES/datatables.tr",
"sSearch": "Search all columns:"
},
"iDisplayLength": 25,
"sPaginationType": "full_numbers",
"sDom": 'RC<"top"lfp>rt<"bottom"ip><"clear">',
"oColVis": {
"aiExclude": [ 10 ]
},
"aaSorting": [[0, 'desc']],
"aoColumnDefs": [
{ "bVisible": false, "aTargets": [ 8 ] },
{ "bVisible": false, "aTargets": [ 7 ] },
{ "bSearchable": true, "aTargets": [ 10 ] },
{ "bVisible": false, "aTargets": [ 10 ] }
],
"bStateSave": false,
"bProcessing": true,
"sAjaxSource": "http://" + hostname + "/modules/core/ticket/get_ticket_list.php",
"fnServerParams": function (aoData) {
aoData.push({"name":"show_closed", "value":show_closed});
aoData.push({"name":"page", "value":page});
},
"fnPreDrawCallback": function( oSettings ) {
//Doing some things
},
"fnInitComplete": //Doing some filtering activities, (clearing and afnFilering.push) ,
"fnDrawCallback": function(){
//Most reading of data values, some marking of rows as well.
}
});[/code]
Any ideas what could be the problem and how to fix it?
[code]
oTable = $('#mytickettable').dataTable( {
"oLanguage": {
"sUrl": "http://" + hostname + "/modules/core/localization/locale/sv_SE/LC_MESSAGES/datatables.tr",
"sSearch": "Search all columns:"
},
"iDisplayLength": 25,
"sPaginationType": "full_numbers",
"sDom": 'RC<"top"lfp>rt<"bottom"ip><"clear">',
"oColVis": {
"aiExclude": [ 10 ]
},
"aaSorting": [[0, 'desc']],
"aoColumnDefs": [
{ "bVisible": false, "aTargets": [ 8 ] },
{ "bVisible": false, "aTargets": [ 7 ] },
{ "bSearchable": true, "aTargets": [ 10 ] },
{ "bVisible": false, "aTargets": [ 10 ] }
],
"bStateSave": false,
"bProcessing": true,
"sAjaxSource": "http://" + hostname + "/modules/core/ticket/get_ticket_list.php",
"fnServerParams": function (aoData) {
aoData.push({"name":"show_closed", "value":show_closed});
aoData.push({"name":"page", "value":page});
},
"fnPreDrawCallback": function( oSettings ) {
//Doing some things
},
"fnInitComplete": //Doing some filtering activities, (clearing and afnFilering.push) ,
"fnDrawCallback": function(){
//Most reading of data values, some marking of rows as well.
}
});[/code]
Any ideas what could be the problem and how to fix it?
This discussion has been closed.
Replies