Hi, i have following code:
$('#optionsTable').dataTable( { "aoColumns": [ { "sWidth": "25%" }, { "sWidth": "70%" }, { "sWidth": "5%", "sClass": "center", "bSortable": false }, ], "aaSorting": [[0, 'asc']], "bJQueryUI": true, "bAutoWidth": false }, "sPaginationType": "full_numbers" } );Everything works fine except column width - they have auto width. What should i do to make fixed width?