Hi @augustin.ziegler
This example is working in my build:
New-UDButton -Text "EditText" -OnClick {
Set-UDElement -Id "Editable" -Attributes @{text = (Get-random)}
}
New-UDButton -Text "Hidemeh" -OnClick {
Set-UDElement -Id "Editable" -Attributes @{hidden = $true}
}
New-UDButton -Text "Showmeh" -OnClick {
Set-UDElement -Id "Editable" -Attributes @{hidden = $false}
}
Does these not work in the nightly?
Any errors in the developer console?
If so, i’ll download the nightly later today and give it a go.