Show Editor programmatically
Show Editor programmatically
Daniel30
Posts: 2Questions: 1Answers: 0
Hello,
I need to show the editor programmatically. Can anyone tell me how to do that?
I already tried simulating a click on editor's "Create" Button and calling the show() and open() method of the editor. With .show() nothing happens and with .open() it opens a completely empty editor (without the field I defined on creation).
Regards,
Daniel
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
The
create()
,edit()
andremove()
methods will all, by default open the Editor view. If you use the options of those methods to disable automatic opening you can useopen()
. You must usecreate()
,edit()
orremove()
before callingopen()
.Allan
Thank you! :)
Thought .create() is used for the initial setup of the editor.