Skip to content

Open Record Creation Page

Overview

After user triggers, use automation steps to display a customized data table creation form

Parameter Configuration

ParameterDescription
Dialog TitleTitle of the dialog box for creating the form. Context variables can be used to specify dynamic content
Dialog Distance from TopDistance from the top of the display dialog box. Context variables can be used to specify dynamic content
Dialog WidthWidth of the dialog box popup. Supports both pixel and percentage formats
Display as Modal WindowSet whether the opened form creation page is modal
Data TableThe data table to which the opened record form belongs
Form Module IdentifierForm identifier, defaults to the identifier set by the data table. Context variables can be used to specify dynamic content
Object Default ValueUse record object as form default value. Context variables can be used to specify dynamic content
Field Default ValueSet field default values. Context variables can be used to specify dynamic content
Hidden FieldsList of fields not displayed in the creation form
Read-only FieldsList of read-only fields in the creation form
Create Button TextText for the submit button of the creation form. Context variables can be used to specify dynamic content
Hide Create Button When Conditions MetHide the create button when conditions are met. Context variables can be used to specify dynamic content
Disable Create Button When Conditions MetDisable the create button when conditions are met. Context variables can be used to specify dynamic content
Form Submission MethodBehavior after clicking the Create Button. Supports Submit data and create record and Only submit data for subsequent steps
Call Automation Before SubmitWhen submission behavior is Only submit data for subsequent steps, automation can be called before submitting data
Automation Input ParametersWhen submission behavior is Only submit data for subsequent steps, input parameters for calling automation

Return Value

ParameterTypeDescription
Form DataRecordForm 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, and Lookup List, arrays need to be passed. For example, the data table structure displayed by the list type is:

    Field IdentifierField NameField Type
    nameNameSingle-line Text
    ageAgeNumber

    The data structure that needs to be passed is:

    text
    ${
        [
          {
              name: 'Zhang San',
              age: 20
          },
          {
              name: 'Li Si',
              age: 22
          }
      ]
    }