Simple Text Editor

Hi there,
maybe it’s a stupid question, but I need help.
I need a simple editor in UD which shows me the content of a file (.txt file) and I want to edit this content with UD and save it again in this txt file. I get the content with “get-content”.
But in which UD GUI element can I display it for editing?

Can anyone help me?

The code editor control would be your best bet but isn’t available in Community edition" https://marketplace.universaldashboard.io/Dashboard/UniversalDashboard.CodeEditor

Otherwise, you can use a text area.

New-UDElement -Tag 'textarea' -Content {
  "My text"
}
2 Likes