Open Record Creation Page
Overview
After user triggers, use automation steps to display a customized data table creation form
Parameter Configuration
| Parameter | Description |
|---|---|
| Dialog Title | Title of the dialog box for creating the form. Context variables can be used to specify dynamic content |
| Dialog Distance from Top | Distance from the top of the display dialog box. Context variables can be used to specify dynamic content |
| Dialog Width | Width of the dialog box popup. Supports both pixel and percentage formats |
| Display as Modal Window | Set whether the opened form creation page is modal |
| Data Table | The data table to which the opened record form belongs |
| Form Module Identifier | Form identifier, defaults to the identifier set by the data table. Context variables can be used to specify dynamic content |
| Object Default Value | Use record object as form default value. Context variables can be used to specify dynamic content |
| Field Default Value | Set field default values. Context variables can be used to specify dynamic content |
| Hidden Fields | List of fields not displayed in the creation form |
| Read-only Fields | List of read-only fields in the creation form |
| Create Button Text | Text for the submit button of the creation form. Context variables can be used to specify dynamic content |
| Hide Create Button When Conditions Met | Hide the create button when conditions are met. Context variables can be used to specify dynamic content |
| Disable Create Button When Conditions Met | Disable the create button when conditions are met. Context variables can be used to specify dynamic content |
| Form Submission Method | Behavior after clicking the Create Button. Supports Submit data and create record and Only submit data for subsequent steps |
| Call Automation Before Submit | When submission behavior is Only submit data for subsequent steps, automation can be called before submitting data |
| Automation Input Parameters | When submission behavior is Only submit data for subsequent steps, input parameters for calling automation |
Return Value
| Parameter | Type | Description |
|---|---|---|
| Form Data | Record | Form data after record creation. When submission behavior is Submit data and create record, the return value will include Record ID |
Usage Instructions
Dialog Height & Dialog Distance from Top The set dynamic content needs to include size units. For unit ranges, refer here
Form Default Value
- The attribute identifiers of the form data used need to be consistent with the field identifiers of the data table form
Field Default Value
- The priority of field default value is higher than form default value. For the same field, field default value will override form default value after setting
Form Module Identifier
- Can be obtained in the context variables within the form and participate in form calculations
Field Default Value Setting
For list-type fields such as
Sub-object,Associated List, andLookup List, arrays need to be passed. For example, the data table structure displayed by the list type is:Field Identifier Field Name Field Type name Name Single-line Text age Age Number The data structure that needs to be passed is:
text${ [ { name: 'Zhang San', age: 20 }, { name: 'Li Si', age: 22 } ] }

