onDimensionGroupRevisionNew
Definition
onDimensionGroupRevisionNew is a host callback invoked by DimensionIQWidget when
a user creates a new dimension group revision in the widget component and the host application must handle it's persistent storage.
Once processing is complete, please refer to the
onResponse
contract in the Widget Callback Introduction.
This callback ensures the widget and host application remain synchronized regarding the revision's creation state.
Function Signature
Function Signature
onDimensionGroupRevisionNew: (
group: DIQ_DimensionGroupRevision,
onResponse: (result: DIQ_Result) => void
) => void;
Callback Parameters
group
Type: DIQ_DimensionGroupRevision
Description: The newly created DIQ_DimensionGroupRevision object from the widget.
onResponse
Type: (result: DIQ_Result) => void
Description: Callback function that must be called by the host to complete the operation.
Examples
onDimensionGroupRevisionNew