Skip to main content

onListDimensionGroupRevisions

Last updated 5/03/2026

Definition

is a host callback invoked by
DimensionIQWidget
when it requires the host application to provide all dimension groups associated to a revision.

The host application is responsible for retrieving all stored

records for the the requested 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 revision history of dimension groups.

Function Signature

TypeScript
Function Signature
onListDimensionGroupRevisions: (
revision: DIQ_Revision,
onResponse: (result: DIQ_Result, groups: DIQ_DimensionGroupRevision[]) => void
) => void;

Callback Parameters

revision
Type: DIQ_Revision
Description: The

object for which dimension group revisions are being requested.

onResponse
Type: (result: DIQ_Result, groups: DIQ_DimensionGroupRevision[]) => void
Description: Callback function that must be called by the host to complete the operation, and return an array of

objects.

Examples

onListDimensionGroupRevisions