This is a companion discussion topic for the original entry at https://blog.ironmansoftware.com/powershell-universal-v5-beta1/
Is there an ETA for 4.3? Quite a few requests/tickets I’ve put in have been closed as resolved / implemented in 4.3
We don’t have a 4.3 release target at the moment and anything that is closed or resolved is already in 4.2.13. A few things have been fixed in 4.2.14 but being that 4.2.13 was released a few days ago, it’s not too much.
Specifically, to the 4.3 milestone, there was the ability to track the current active tab in the UD-TAB, so when going between pages, we could keep track of it. I don’t see this anywhere in the change log.
I’m not totally sure about that specific ask but you can do it this way.
New-UDTabs -Tabs {
New-UDTab -Id 'Tab1' -Content {
Show-UDToast $Endpoint.Name -Persistent
} -Dynamic -Text "Tab1"
New-UDTab -Id 'Tab2' -Content {
Show-UDToast $Endpoint.Name -Persistent
} -Dynamic -Text "Tab2"
}
Hey! I was also interested in the Tab thing, and while Identifying which tab is currently selected is a step in the right direction we still have no way to actually change the tab dynamically.
For example, this used to be in older versions of PSU with the -Active parameter on the New-UDTab cmdlet and was suggested/marked as closed for implementation in 4.3 here: Retain Selected Tab when changing pages · Issue #2897 · ironmansoftware/issues (github.com)
My use case is for it not to switch back to tab1 when the user refreshes the page.