Skip to main content

onDimensionCustomValueUpdate

Last updated 28/07/2026

Definition

is a host callback invoked by
DimensionIQWidget
when an existing custom value for a dimension has been updated within the widget and the host application must persist the updated custom value.

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 update state of dimension custom values.

Function Signature

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

Callback Parameters

dimensionCustomValue
Type: DIQ_DimensionCustomValue
Description: The updated

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

onDimensionCustomValueUpdate