Open editor form from a custom button
Open editor form from a custom button
Hi!
I have a list of persons - each person can have n notes attached. For displaying the multiple notes, I am going to use nested tables.
For adding a note: My plan was to have a custom button (extend: "selectedSingle") -> when selecting a person and clicking this button, I want to show the "add note" editor form. How do I do this?
Thank you,
Michael
This discussion has been closed.
Answers
Hi,
You can trigger Editor's editing mode by calling the
edit()
method from with in the Button'saction
function (buttons.buttons.action
). That is basically what the predefined buttons do as well!Allan