Shrinking column filter date-range input

Shrinking column filter date-range input

lngphplngphp Posts: 22Questions: 0Answers: 0
edited April 2014 in General
This is the basic code example. The goal is to reduce input width.

[code]
$(document).ready(function() {
$('#example').dataTable()
.columnFilter({ sPlaceHolder: "head:before",
aoColumns: [
null,
{ type: "date-range" }
]
});
});
[/code]
This discussion has been closed.