Hello,
Is there an existing way for making “settings dialog” easier to work with, especially for text input.
The possibility to make error while editing input such “endpoint” below is quite important.
- Faulty mapping (in red) can be easily missed
- Reading or editing the whole parameter requires to use an external text editor …
I had a look to run some javascript on the fly (directly in the console) for altering input[“text”] into textarea but without much success (especially when there was a mapping reference).
$('input[type="text"]').each(function () {
var textbox = $(document.createElement('textarea'));
$(this).replaceWith(textbox);
});