Filter and nothing
Filter and nothing
Hi,
I have a trouble with the filter search : When i filtering, nothing happens.
No javascript errors, nothing.
I'm using dataTable 1.6.2 and jquery 1.4.2, and jquery no conflict ("jq"), because i'm using prototype on others pages.
Is there a configuration to enable filtering ?
My code :
[code]
jq(document).ready(function() {
jq('#my_table').dataTable({
"bPaginate": true,
"bLengthChange": true,
"bFilter": true,
"bSort": true,
"bInfo": false,
"bAutoWidth": false,
"oLanguage": { "sUrl": "../../js/lib/datatable_fr.txt" },
"sPaginationType": "full_numbers"
});
} );
[/code]
Others functionality works perfectly.
Thanks a lot.
I have a trouble with the filter search : When i filtering, nothing happens.
No javascript errors, nothing.
I'm using dataTable 1.6.2 and jquery 1.4.2, and jquery no conflict ("jq"), because i'm using prototype on others pages.
Is there a configuration to enable filtering ?
My code :
[code]
jq(document).ready(function() {
jq('#my_table').dataTable({
"bPaginate": true,
"bLengthChange": true,
"bFilter": true,
"bSort": true,
"bInfo": false,
"bAutoWidth": false,
"oLanguage": { "sUrl": "../../js/lib/datatable_fr.txt" },
"sPaginationType": "full_numbers"
});
} );
[/code]
Others functionality works perfectly.
Thanks a lot.
This discussion has been closed.
Replies
1) What happens when you use the following code:
[code]
jq(document).ready(function() {
jq('#my_table').dataTable();
[/code]
2) Which browser(s) are you using?
3) Are you using any other libraries besides prototype? (I'm have Prototype and dataTables working together)