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
latest (online editor)
I'm using a custom filter control function I think a user (currently me) might need a filter to search for empty/null values as well
empty/null
<table id="table" data-filter-control="true" data-show-search-clear-button="true"> <thead> <tr> <th data-field="id">ID</th> <th data-field="price" data-filter-control="select" data-filter-custom-search="final_cat_custom_filter">Item Price</th> </tr> </thead> </table> <script> $(function() { var data = [ { "id": 1, "price": 1 }, { "id": 1, "price": null } ] $('#table').bootstrapTable({'data': data}) }) function final_cat_custom_filter(...x) { alert(JSON.stringify(x)) } </script>
I think this commit introduced this bug: #4494? Not sure
No response
The text was updated successfully, but these errors were encountered:
Online example: https://live.bootstrap-table.com/code/wenzhixin/17502
Sorry, something went wrong.
Looks like the same code to me?
When you change the select filter, it only alerts one time when it should've done 2 times because there are two rows
Yes, I saved your code to the online editor.
Thank you! It wasn't formatted properly as well
No branches or pull requests
Bootstraptable version(s) affected
latest (online editor)
Description
I'm using a custom filter control function
I think a user (currently me) might need a filter to search for
empty/null
values as wellExample(s)
Possible Solutions
I think this commit introduced this bug: #4494?
Not sure
Additional Context
No response
The text was updated successfully, but these errors were encountered: