We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Whenever I try to translate the datatables strings using a json file the filters of yadcf are disabled.
When I load the page the filters show up, but when the page finishes loading they dissapear.
DataTables version: 1.10.10 yadcf version: 0.8.8
Current code (doesn't work):
$('#stock_table').dataTable( { "paginate": false, "dom": '<"#category">lfrt', "language": { "url": "/includes/datatables/Spanish.json" }, "columnDefs": [ { "targets": [ 1, 2, 3, 4 ], "searchable": false, "orderable": false, "className": "centrado" } ] }).yadcf([ { column_number: 0, filter_type: "auto_complete" }, { column_number: 1, column_data_type: "html", html_data_type: "text", filter_default_label: "Seleccionar categoría" } ]);
But deleting the language option on datatables makes it work:
$('#stock_table').dataTable( { "paginate": false, "dom": '<"#category">lfrt', "columnDefs": [ { "targets": [ 1, 2, 3, 4 ], "searchable": false, "orderable": false, "className": "centrado" } ] }).yadcf([ { column_number: 0, filter_type: "auto_complete" }, { column_number: 1, column_data_type: "html", html_data_type: "text", filter_default_label: "Seleccionar categoría" } ]);
Sorry for my english. Greetings from Spain!
The text was updated successfully, but these errors were encountered:
Please provide a link to a jsbin/jsfiddle with the language issue, otherwise I wont be able to reproduce/debug it
Sorry, something went wrong.
https://jsfiddle.net/3fut3xhp/embedded/result/
support language url for non ajax DT
de66d42
#270
fixe, grab the 0.8.9.beta.29 see working sample
as to the autocomplete filter you must include jquery ui autocomplete js/css in order for it to work
No branches or pull requests
Whenever I try to translate the datatables strings using a json file the filters of yadcf are disabled.
When I load the page the filters show up, but when the page finishes loading they dissapear.
DataTables version: 1.10.10
yadcf version: 0.8.8
Current code (doesn't work):
But deleting the language option on datatables makes it work:
Sorry for my english.
Greetings from Spain!
The text was updated successfully, but these errors were encountered: