Order Items Bulk More Actions Menu Params


Apps built by Wix pass parameters via dashboard slots for you to utilize in your plugin’s functionality. Learn how to interact with and retrieve parameters from the dashboard page.

Plugin Params
isSelectAllboolean

A boolean value indicating whether the "Select All" option was selected.


selectedIdsArray<string>

An array of IDs representing the orders that have been selected.


totalnumber

The total number of orders that were selected.


uncheckedIdsArray<string>

An array of IDs representing the orders that have been unchecked. Applicable only when the "Select All" option was selected.


onSuccessfunction

onSuccess(): Promise<void> Callback that notifies the host after successful handling of the flow associated with the new menu item.

Use this in the code for the page or modal opened by the dashboard menu plugin.

JavaScript
Did this help?