[columnFilter] thead:after doesn't work
[columnFilter] thead:after doesn't work
hello ,
i try to use columFilter with sPlaceHolder: "thead:after"
i use :
jquery 1.8.1
datatables 1.9.3
columnFilter 1.5.0
my table is :
[code]
Numero de la prise
Description
Piece
Action
// a lot of data
[/code]
my jquery code for initialisation is :
[code]
$(document).ready(function(){
$('#tatable').dataTable({
"bLengthChange": false,
"iDisplayLength":50
}).columnFilter({
sPlaceHolder: "thead:after",
aoColumns :[
{type: "text"},
{type: "text"},
{type: "text"},
{type: "text"}
]
}
);
});
[/code]
and this code display 2 row on header and inputs is on bottom of the table ... WHY ???
i try to use columFilter with sPlaceHolder: "thead:after"
i use :
jquery 1.8.1
datatables 1.9.3
columnFilter 1.5.0
my table is :
[code]
Numero de la prise
Description
Piece
Action
// a lot of data
[/code]
my jquery code for initialisation is :
[code]
$(document).ready(function(){
$('#tatable').dataTable({
"bLengthChange": false,
"iDisplayLength":50
}).columnFilter({
sPlaceHolder: "thead:after",
aoColumns :[
{type: "text"},
{type: "text"},
{type: "text"},
{type: "text"}
]
}
);
});
[/code]
and this code display 2 row on header and inputs is on bottom of the table ... WHY ???
This discussion has been closed.
Replies
I'd suggest filing an issue on the ColumnFilter site: http://jquery-datatables-column-filter.googlecode.com/svn/trunk/index.html as I'm not too well versed in that particular plug-in.
Allan