displayCustomForm()
Last updated 11/09/2024
Example
The following code displays a custom form with the Action ID of FieldsType when attached to the On Press event for an action button.
Display the FieldsType custom form
function OpenFieldsTypesForm(five: Five, context: any, result: FiveError) : void {
five.displayCustomForm('FieldsType');
return five.success(result);
}
Display the FieldsType custom form
function OpenFieldsTypesForm(five, context, result) {
five.displayCustomForm('FieldsType');
return five.success(result);
}