-
Notifications
You must be signed in to change notification settings - Fork 63
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
OCGV:Different Filter will "forget" all selected before #174
Comments
I want to describe my impact on this a little bit more in detail. For me it would be valuable, for the checkmarks to be persistent through filters. |
The |
How do I reach the context menu on Linux shell? |
By mouse right clicking on the |
Mouse? Hehe. Don't use one on my iPad which connects via SSH to the raspian shell and then use the shell to start pwsh. |
I forgot to mention that the context menu can be opened with the keyboard by pressing |
Ok. I mean I can understand that some people want it this way (Filter will forget all previously checked). |
I must realize, that I more then once walked into this issue, even after knowing that it changed.
|
Would also be ok in my eyes. |
That is the best solution. Maintaining a track on each new filter to the ID of all the available items from the empty filter. |
Is someone actively working on this? |
I def want to fix this! I will get to it asap. |
Any news?
|
No update at this time. On my list to work on but been super busy. Sorry. |
Any news on this? |
Looks great. Can tell you how it feels when able to try. |
Putting @MrFly72's question in right thread:
The pinned elements currently are just the top elements in the filtered list. They scroll with the list. Making them actually be pinned (so they don't scroll) would be a big change... |
This addresses #174 (changing the filter caused marked items to get unmarked) by: - The input to the cmdlet tracks marked/unmarked items - The list attached to the listview is now always a copy of the input list, with the filter applied (even if there's no fitler). - Whenever mark/unmark happens in the listview, the original item in the input list is updated - On exit, any items in the input list that are marked are provided as output
That was my intent. I'll look to see what I did wrong. |
It is a large objectlist I am using (2600 rows).Don't know if that matters.
It takes a while to load (about 10 secs) from pipeline.
|
#188 should fix this! Let me know (in that PR comments). |
Prerequisites
Steps to reproduce
When a filter is active at the end of choosing elements, only the elements that are included in the active filter will be returned.
eg.:
Get-Process | Out-ConsoleGridView
Check one process, eg. Word
Filter by eg.Notepad, check Notepad
When you now hit enter with the active filter for notepad, only notepad will be returned
There is only one workaround this, you have to remove the filter before hitting enter.
This bug is introduced in the newer version, as before, hitting enter in a filtered list, would gather all elements that have been checked.
Expected behavior
Word + Notepad should be returned
Actual behavior
Only notepad is returned
Error details
No Error ourput
Environment data
Version
0.7.2
Visuals
No response
The text was updated successfully, but these errors were encountered: