You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 4, 2025. It is now read-only.
I have a dashboard with a variety of tabbed controls. Get-UDElement is then utilized to retrieve the values across the tabs loaded in my modal. Starting with PreRelease 2.8.2 Get-UDElement is no longer able to retrieve the values and instead returns null.
To Reproduce
New-UDTab-Text 'General'-Content {
New-UDCard-Content {
New-UDTextbox-Id "Option1"-Label "Name"-Type text
New-UDTextbox-Id "Option2"-Label "Description"-Type text
}
}
New-UDTab-Text 'Different Tab'-Content {
New-UDButton-Text "Create A Thing"-Icon folder_plus -OnClick {
# Get Input Data$Name= ((Get-UDElement-Id 'Option1').Attributes["value"])
$Description= ((Get-UDElement-Id 'Option2').Attributes["value"])
}
}
You will find that in 2.8.2 $Name and $Description will always be null whereas in the previous version this worked fine.
I have not done extensive testing but my guess is either a change in Get-UDElement or UDTab.
Required for v2.8.2 as dashboards built in <2.8.2 will run into breaking changes.
The text was updated successfully, but these errors were encountered:
Describe the Issue
I have a dashboard with a variety of tabbed controls. Get-UDElement is then utilized to retrieve the values across the tabs loaded in my modal. Starting with PreRelease 2.8.2 Get-UDElement is no longer able to retrieve the values and instead returns null.
To Reproduce
You will find that in 2.8.2
$Name
and$Description
will always be null whereas in the previous version this worked fine.I have not done extensive testing but my guess is either a change in
Get-UDElement
or UDTab.Required for v2.8.2 as dashboards built in <2.8.2 will run into breaking changes.
The text was updated successfully, but these errors were encountered: