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
Thank the devs for this great project which I have adopted extensively in my project.
According to DataTable > 1.10, the filter delay options should be set with following options:
$('#example').DataTable( { searchDelay: 350 } );
However, currently the project uses fnSetFilteringDelay which is deprecated after DT1.10.
Can someone see how it can be fixed?
The text was updated successfully, but these errors were encountered:
My current workaround is as follows: manually create 'static/js/datatableview.min.js'
put searchDelay below as follows:
options = $.extend({}, datatableview.defaults, opts, { "searchDelay": 400, "aaSorting": sorting_options, "aoColumns": column_options, ...
Sorry, something went wrong.
No branches or pull requests
Thank the devs for this great project which I have adopted extensively in my project.
According to DataTable > 1.10, the filter delay options should be set with following options:
However, currently the project uses fnSetFilteringDelay which is deprecated after DT1.10.
Can someone see how it can be fixed?
The text was updated successfully, but these errors were encountered: