Class
This message is used when needing to implement a workflow upon the creation, update or removal of a record set.
This message carries the changed DataRecordSet
information.
Other widgets may need to subscribe to this message whenever a workflow involves reliance on a change to record set(s).
Implements
Constructors
constructor
Class Constructornew DataRecordSetChangeMessage(widgetId: string, changeType: RecordSetChangeType, data: string[] | DataRecordSet[]): DataRecordSetChangeMessage
When removing data record sets, please pass in dataRecordSetNames; when adding or updating data record sets, please pass in dataRecordSets
Parameters
Parameter | Type |
---|---|
widget | string |
change | RecordSetChangeType |
data | string[] | DataRecordSet[] |
Returns
DataRecordSetChangeMessage
Properties
Property | Type | Notes |
---|---|---|
The record set change type. | ||
string[] | The name of the record sets. When removing some data record sets, only names are required. | |
The data record sets that are created or updated. |
changeType
Class PropertychangeType: RecordSetChangeType
The record set change type.
dataRecordSetNames
dataRecordSetNames: string[]
The name of the record sets. When removing some data record sets, only names are required.
dataRecordSets
dataRecordSets: DataRecordSet[]
The data record sets that are created or updated.