Adding filter makes the columns larger

Adding filter makes the columns larger

HankAnzisHankAnzis Posts: 2Questions: 0Answers: 0
edited January 2013 in General
Hello, when I add a filter to a table it makes all the columns wider. Is there a way around this behaviour?

[code]
$("#tblHistory tfoot th").each(function (i)
{
if (i != 6) {
this.innerHTML = fnCreateSelect(oTable.fnGetColumnData(i));
$('select', this).change(function () {
oTable.fnFilter($(this).val(), i);
});
}
});
[/code]
This discussion has been closed.