Skip to main content

onProjectOpen

Last updated 5/03/2026

Definition

is a host callback invoked by
DimensionIQWidget
when the widget initiates a project open request and the host application is responsible for retrieving the project to be opened.

Once processing is complete, please refer to the

onResponse
contract in the Widget Callback Introduction.

This callback ensures the widget and host application remian synchronized regarding whether a project was successfully opened or not.

Function Signature

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

Callback Parameters

onResponse
Type: (result: DIQ_Result, project: DIQ_Project) => void
Description: Callback function that must be called by the host to complete the operation, and return a

object.

Examples

onProjectOpen