styledTextEditorField refresh after keypress
Hi all,
I would like to use the styled text editor field in place of paragraph field to be able to use bulleted lists, but there is no refresh after keypress that we can set. How can I mimic this refresh functionality with a styledTextEditorField?
I have something like this:
a!localVariables(
local!origNote,
local!newNote,
a!styledTextEditorField(
label: "Edit Note",
value: local!origNote,
sizeLimit: cons!ERR_MAX_CHAR_NOTE,
/*refreshAfter: "KEYPRESS",*/
saveInto: a!save(
local!newNote,
)
),)
