Skip to main content

onDimensionCustomValueDelete

Last updated 28/07/2026

Definition

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

TypeScript
Function Signature
onDimensionCustomValueDelete: (
dimensionCustomValue: DIQ_DimensionCustomValue,
onResponse: (result: DIQ_Result) => void
) => void;

Callback Parameters

dimensionCustomValue
Type: DIQ_DimensionCustomValue
Description: The

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