Custom Edit() form
Custom Edit() form
Workflow Automation Expert
Posts: 14Questions: 4Answers: 0
Is it possible to customise the fields available/visible for edit() form.
In other words, I just want to enable a single field for edit() form,, but allow all multiple fields for the create() form.
This question has an accepted answers - jump to answer
Answers
Yes, two options:
Editor
instance, set up with only the field you want for editing, and use that Editor instance for editing, the other for creation.initCreate
andinitEdit
combined with the API methodsshow()
andhide()
to show and hide the fields that you want for each action.Allan
Thank you Allan. Successfully, used the 1st option of having separate Editor instances.