Custom Edit() form
Custom Edit() form
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
This discussion has been closed.
Answers
Yes, two options:
Editorinstance, set up with only the field you want for editing, and use that Editor instance for editing, the other for creation.initCreateandinitEditcombined 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.