...
Create New Custom Form Instance
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
def customForm = api.customFormApi().newCustomForm() .setLabel("my custom form 1") .setTypeId(1) //❶ .setUserGroupViewDetails("viewGroup") .setUserGroupEdit("groupEdit") .create() |
❶ ID of the CustomFormType.
Update Existing Custom Form Instance
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
api.customFormApi() .withId(customForm.id).updateData() .setLabel("after label") .setInputValue("input1000", 1001) .setAttributeValue("attribute1","attribute1") .doUpdate() |