-
is there any way to preload html data in editor textfield? or we should load it with initial text? |
Beta Was this translation helpful? Give feedback.
Answered by
tneotia
Aug 4, 2021
Replies: 1 comment
-
You should use |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
tneotia
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You should use
initialText
to pre-load the data. To load on-demand you can usecontroller.insertHtml
(adds new content) orcontroller.setHtml
(replaces existing content).