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, ) ),)
Discussion posts and replies are publicly visible
a!localVariables( local!a, a!cardLayout( contents: a!styledTextEditorField( sizeLimit: 200, value: local!a, saveInto: local!a ) ) )
You can only do like that and please check your value and saveInto parameter.