onDimensionCustomValueDelete
Definition
onDimensionCustomValueDelete is a host
callback invoked by DimensionIQWidget when a custom value has been deleted from a
dimension within the widget and the host application must persist the deletion.
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 deletion state of dimension custom values.
Function Signature
Function Signature
onDimensionCustomValueDelete: (
dimensionCustomValue: DIQ_DimensionCustomValue,
onResponse: (result: DIQ_Result) => void
) => void;
Callback Parameters
dimensionCustomValue
Type: DIQ_DimensionCustomValue
Description: The DIQ_DimensionCustomValue object representing the custom value being deleted.
onResponse
Type: (result: DIQ_Result) => void
Description: Callback function that must be called by the host to complete the operation.
Examples
onDimensionCustomValueDelete