Skip to main content

displayCustomForm()

Last updated 7/08/2023

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);
}