fix: #315 - filters dont work and poorly displayed#318
fix: #315 - filters dont work and poorly displayed#318ofirbit wants to merge 1 commit intoquantopian:masterfrom
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.