I have a question about setting the style attributes for a data cell in the jQuery.DataTable. I was able to set the width for each column when initializing the
jQuery.DataTable
This is the code that worked for me:
oTable = $('#tableExample').dataTable( { "aoColumns" : [ { sWidth: '40%' }, { sClass: "classDataTable" } ] } );