Skip to main content

onListDimensionCustomValuesForRevision

Last updated 29/07/2026

Definition

is a host callback invoked by
DimensionIQWidget
when the widget requires the list of custom values associated with all dimensions within a revision.

The host application is responsible for retrieving the requested

records for the specified revision.

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 custom values associated with a revision.

Function Signature

TypeScript
Function Signature
onListDimensionCustomValuesForRevision: (
revision: DIQ_Revision,
onResponse: (
result: DIQ_Result,
dimensionCustomValues: Array<DIQ_DimensionCustomValue> | null
) => void
) => void;

Callback Parameters

revision
Type: DIQ_Revision
Description: The

object for which dimension custom values are being requested.

onResponse
Type: (result: DIQ_Result, dimensionCustomValues: Array<DIQ_DimensionCustomValue> | null) => void
Description: Callback function that must be called by the host to complete the operation, and return an array of

objects.

Examples

OnListDimensionCustomValuesForRevision