Text editor in every input

Hello
Is it possible to set each html input in the application as a text editor? I need the ability to bold and change the color of the text, and then save the content of the input as text with html tags. I have already made one text editor, but I would not like to do separate editors for all inputs (100+).

Thanks

some ideas? refresh…

No, it is not possible. TextEditor must be initialized per each input

You could use a custom class on inputs you want to convert to a rich editor. And then in a global pageInit handler, find and loop through inputs with your custom class and initialize them.