.columnFilter not working if moved to top of the tableHi

.columnFilter not working if moved to top of the tableHi

dshdsh Posts: 19Questions: 0Answers: 0
edited July 2011 in General
Hi,
First, Thanks for this wonderful plug in.

I got it working just great, with the search options at the bottom of the table. But i am struggling to get it working by moving to the top of the table. looked at all forums and examples.

Here is my code: it would be great if you could help:
Tried adding "sPlaceHolder: "head:before"" ..but does not like it

[code]
caDownloadDashboardTable = $('#caDownloadDashboardId').dataTable(
{
"sPaginationType": "full_numbers",
"bJQueryUI": true,
"iDisplayLength":-1,
"oLanguage": {
"sSearch": "Search all columns:",
"sLengthMenu": 'Display '+ '3'+ '5'+ '10'+ '30'+ '50'+ 'All'+ ' records'
},
aoColumns: [ null,
null,
null,
{ "sWidth": "200px" }
]
}
).columnFilter({
sPlaceHolder: "head:before",
aoColumns: [ null,
null,
null,
{ type: "select", values: ['0', '1','2','3','4']}
]
});
});


[/code]

and my html code:

[code]






DownLoad status


Run Id
Client Id
Download Id
DownLoad status














[/code]

Thanks.
This discussion has been closed.