-
Notifications
You must be signed in to change notification settings - Fork 422
New issue
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
fix: #315 - filters dont work and poorly displayed #318
base: master
Are you sure you want to change the base?
fix: #315 - filters dont work and poorly displayed #318
Conversation
I would really like to see this fixed because it limits the filtering to be nearly unusable. |
I've also come across this issue today, are there any blockers to merging this? |
Adding this commit(richardlin047@19e76a1) fixes the display issues with the numerical filter. The div was missing a closing tag. Both my commit and ofirbit's commit are combined on this branch as a solution: master...richardlin047:filter_fix |
Hi @ofirbit , Just wondering if there is any workaround until changes are updated in newer version. I tried to edit same fields as in #315, but still didn't manage to get it going. I recently moved to jupyter lab and it is kind of annoying not to be able to use filters of qgrid properly as in jupyter notebook. Thanks. |
@EmilGuliyev you can try forking my branch https://github.com/richardlin047/qgrid/commits/filter_fix which includes some fixes on top of the ones by @ofirbit . If you just want to see the changes that were made (only a few lines), check them here: master...richardlin047:filter_fix As a head's up, Quantopian is no longer operating, so there will be no more updates to Qgrid |
@richardlin047 , Thank you very much for your comments. I also changed those lines in src folder and seems to be working now. That is unfortunate that this project is not maintained by Quantopian anymore. I will check out your fork and it looks like you are actively maintaining it. |
This fixes a severe bug in the filters, caused by a new version of jQuery (qgrid updated it's jQuery version when moved to Jupyter 2). The
<i>
tags must have a closing tag</i>
, otherwise the dropdown element is rendered inside the<i>
tag and causes severe bugs (the filter is floating with no background and also the text boxes, sliders and booleans are not clickable. This means the filter is useless).Before my fix:
After my fix:
(and also all filters work great now)
Maintainer - can you please release a version after merging this? Thanks.