-
Notifications
You must be signed in to change notification settings - Fork 366
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
Enhancement Request - Full Screen Results should show filtered results, not all results #433
Comments
Can you give an example please? Perhaps with screenshots & the type of URL params you're talking about. |
Thanks for looking into this. Here's an example query with a filtering parameter
The URL on the main screen for the unfiltered query returns 937 rows: http://127.0.0.1:8000/explorer/13/?params=domain%3A The URL on the "Full Screen Results" link is: http://127.0.0.1:8000/explorer/13/?fullscreen=1&rows=1000 Specifying a Domain Parameter of "Business" filters the results and only shows 26 rows. The URL on the main screen for the filtered query that returns the 26 rows: http://127.0.0.1:8000/explorer/13/?params=domain%3ABusiness The URL on the Full screen Results link is (the same as when the main screen was unfiltered: http://127.0.0.1:8000/explorer/13/?fullscreen=1&rows=1000 (I took 2 screen captures, but for some reason, I can't attach the PDF files. Will try something different and attach later.) |
Can't attach files for some reason - GitHub allows me to select a file to open, but doesn't attach it. I tried SQL Explorer and attaching files in two different browsers and got the same results (FireFox and Pale Moon - a FireFox clone) Let me know if you'd like the screen captures emailed. Regards, Mike |
Ok, I can see now. I've just never used it like this so wasn't familiar with the steps. It looks like it's simply because the
Are you able to submit a PR? The code that needs changing is here, on lines 33 and 35 |
I'm not really setup to submit a PR (Rather than a developer, I'm a hacker who can code myself out of a paper bag, as long as it is sufficiently wet.) I'll try updating my installed code with your lines 33 and 35 above and let you know how it works. |
Ok, my mistake ... lines 33 and 35 are where the fix would go (they aren't actually the fixed lines). I'll scratch my head a little bit to see if I can come up with something, but with my level of coding skills, I'm not even sure where on my head I should be scratching. |
@MYX-GitHub ah ok, sorry, I just assume that people using this are likely to be python devs. I've pushed a branch which hopefully resolves this. You can install from it directly and test it using;
|
This should be resolved in #442 |
The Full Screen Results is a great feature, but somewhat limited because it always shows all query results, whereas the many screen can show results that are filtered through the use of parameters (i.e. - the main screen with filtering parameters can show 100 records, but opening the Full Screen Results shows 1000 results, because it is unfiltered)
Is it possible to enable the Full Screen Results to show only the query results that match the additional parameters (i.e. both screens only show the 100 filtered results)?
Thanks!
Mike
The text was updated successfully, but these errors were encountered: