Skip to main content

onProjectUpdate

Last updated 5/03/2026

Definition

is a host callback invoked by
DimensionIQWidget
when a user modifies an existing project in the widget component and the host application is responsible for persisting those updates.

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 project's updated state.

Function Signature

TypeScript
Function Signature
onProjectUpdate: (
project: DIQ_Project,
onResponse: (result: DIQ_Result) => void
) => void;

Callback Parameters

project
Type: DIQ_Project
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

onProjectUpdate