openAppLightbox( )


Opens a lightbox added by an app.

The openAppLightbox() method opens a lightbox by its ID and optionally passes data to it. Use this in your app's site widget to trigger the app's lightbox. Learn more about site lightbox extensions.

To access the data passed to a lightbox, call getContext() in the lightbox's code.

If the lightbox is closed programmatically using close() and includes data, the promise returned by openAppLightbox() resolves with that data.

Learn more about opening and closing a lightbox from your app's code

Method Declaration
Copy
Method Parameters
idstringRequired

The ID of the lightbox, as defined in the app dashboard.


dataData

Data to pass to the lightbox.

Returns
Return Type:Promise<object>
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?