Not sure what's causing this, whether it's FixedColumns, Datatables, or something of my own doing. For whatever reason, the column width in Chrome is set to 133px, even if the content could easily fit in a smaller width. It does stretch it to a larger size if needed, but it's almost like the minimum width is 133px. IE and Firefox both display correctly, though. I'd like it to just be the size of the largest amount of data. bAutoWidth is set to false.
EDIT: Ah, figured it out. It's because I have a searchable column input in the footer, so it's stretching to fit that. My workaround is to set the input boxes to 1px by default and a class of "search_box", and in the fnDrawCallback, I have the following code (any suggestions are certainly welcome):
EDIT: Ah, figured it out. It's because I have a searchable column input in the footer, so it's stretching to fit that. My workaround is to set the input boxes to 1px by default and a class of "search_box", and in the fnDrawCallback, I have the following code (any suggestions are certainly welcome):
$('.search_box').each(function(){ $(this).css('width', $(this).parent().css('width')); });