Resize not working using ColReorderWithResize, re-ordering works

Resize not working using ColReorderWithResize, re-ordering works

nicsoftnicsoft Posts: 37Questions: 0Answers: 0
edited March 2012 in General
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?

Replies

  • nicsoftnicsoft Posts: 37Questions: 0Answers: 0
    edited March 2012
    Not sure but I think the problem was that I had some td-definition in my .css. But been tweeking a bit with other things that could have helped out so can't be 100% sure.
This discussion has been closed.