Product: PowerShell Universal
Version: 3.6.x / 3.7.x
When adding some content into a New-UDForm in a Dashboard, Textboxes in the Form will be slower and slower when adding text. Tetxboxes outside of form is fast.
Can be tested by this simple code:
New-UDForm -Content {
New-UDCard -Title ‘Simple Card 1’ -Content { “This is some content” }
New-UDCard -Title ‘Simple Card 2’ -Content { “This is some content” }
New-UDCard -Title ‘Simple Card 3’ -Content { “This is some content” }
New-UDCard -Content { New-UDTextbox -Id ‘txtTest1’ -Label “Testing 1 - Inside of form” -FullWidth }
} -OnSubmit { }
New-UDCard -Content { New-UDTextbox -Id ‘txtTest2’ -Label “Testing 2 - Outside of Form” -FullWidth }
Any solution to make Textboxes faster?