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
Hello @chestercharles ,
Is possible add a destroy method for kill the plugin? I created this method to delete but it seems to me to be wrong.
function ActiveFilter() { DeleteFilter(); var table = document.querySelectorAll('table'); $(table).each(function (index) { $(this).excelTableFilter({ columnSelector: '.filtra', sort: false, search: true }); }); } function DeleteFilter() { var dropdowns = document.querySelectorAll('.dropdown-filter-dropdown'); dropdowns.forEach(function (dropdown) { if (dropdown) { dropdown.remove(); } }); }
Best regards
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello @chestercharles ,
Is possible add a destroy method for kill the plugin?
I created this method to delete but it seems to me to be wrong.
Best regards
The text was updated successfully, but these errors were encountered: