Textbox slow in UDForm

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?

I can’t reproduce this myself but maybe I’m not understanding. I’m mostly just jamming text into the textbox but it never slows down. Do you see this with the simple example you provided?

I have a small delay, or it might pause a second if I just hold down a key.

If I add 10+ items in the form, it feels like a Pentium I when adding or changing the text.

ok thanks. I’ll play around with it to see if I can reproduce and either suggest a workaround or get it fixed.

Were you able to reproduce the issue? You need more information?

Here is a demo of the issue

Slowness in PSU forms