ActionsresetFormVersion: 4.59On this pageresetForm Resets the form with the specified name. All form values of this form will be removed. Field Configurations KeyTypeDescriptionDefault Value"params" (required)Objectundefinednull Parameters KeyTypeDescriptionDefault Value"async"BooleanSpecifies whether the action should perform asynchronously.null"form" (required)StringThe name of the form. If no name is specified, the view form will be resetted.null Inherited From Base ActionBase ActionField ConfigurationsKeyTypeDescriptionDefault Value"dynamicParams"ObjectDynamic params to retrieve data from a specific context e.g. a userSetting.null"leadingDelimiter"StringThe leading mustache delimiter to use.null"params"Object,ArrayObject containing the properties of the action.null"trailingDelimiter"StringThe trailing mustache delimiter to use.null"type"StringType name of the action.null Examples Example 1: Reset a form Goal: Create a reset form action to reset the complete form of the profile. To achieve this the following code can be used: { "type": "resetForm", "params": { "form": "profile" }} The form parameter specifies which form should be resetted. Result: A resetForm action has been created.