Form
Overview
The Form supports displaying detailed data of data records.
Note: The display form is in read-only mode, only showing form data, not showing the controls configured in the form.
Settings
| Setting | Description |
|---|---|
| Data Source Type | Configure the type of data source. Options: Call Automation、Use Expression Calculation |
| Call Automation Return Data | The automation called when the data source type is Call Automation. Return data through the Set Automation Return Value step |
| Use Expression to Calculate Data | The expression executed when the data source type is Use Expression Calculation. |
| Data Table | Configure a data table consistent with the data structure of the data source, and use the form layout corresponding to the data table for chart display |
Data Structure
The returned data is consistent with the field structure of the configured data table. If the data has identifiers name and subject, the returned data structure is as follows:
json
{
"name": "Zhang San",
"subject": "Criminal Law"
}Usage Scenarios
This chart can be used when we want to display the details of certain data table records, and supports returning data corresponding to the data table through automation or expressions.

