Create custom panels for action buttons in your widget and its elements. When a Wix user clicks an action button (for example, the Settings button), the custom panel opens.
You can create as many panels as you need, to provide users with various options to customize widgets.
First, design your panel and connect it to an action button. Then create your panel logic, to determine how it interacts with the widget or to control the behavior of the panel itself.
To see examples of custom panels, open the following app templates and go to the Editor Experience tab.
Go to your panel's code section and write your code there.
Custom panels are made of unique user interface (UI) elements, such as buttons, checkboxes, drop-down lists and more. See the list of elements and the Velo API reference for all panel elements.
To enable panel elements to interact with your widget and perform actions in the editor, use one or more of the following modules in your panel code:
The wix-widget
module controls your widget's properties, design presets, and more.
The wix-editor
module interacts with the Editor to remove or restore widget elements, open Dashboard panels, and more.
Panels are often used to manipulate your widget API properties. This means that when users change something in the panel, the property values changes. You can connect panel elements to properties easily, with no code.
You can also connect panel elements with code. In this example, users can turn a "special sale" property on and off, through a toggle element in the widget's panel.
Here is a way for showing and hiding an element through the panel code:
Here is an example of changing the widget's design preset from the panel code.
Note that Blocks also provides a default presets panel to any widget that has presets. This example is just in case you want to create your own custom design and logic for it.
The panel has two thumbnails with the presets name as their values, for two different preset layouts, and looks like this:
Here is the panel's code:
This example shows how to set a "Sale" or "No Sale" tag in the widget props, but for a nested (inner) widget.
In some cases, you might want to manipulate what happens within the panel itself. For example, you might want some of the panel elements to be hidden if they are irrelevant.
This panel for the Login Bar Settings button has a toggle, which determines whether or not to show a greeting before the user's name.
To make your toggle switch work:
showGreetingSwitch
.greetingText
.onReady()
function:You can access your app collections in Blocks from the panel code, and perform various actions, such as query, insert, etc.
You can also access a collection on a site where your app is installed.
Just make sure to use the app namespace.
For example, write this in the panel code to query your app's collection:
After making your panel work, don't forget the next steps:
Connect your panel to an action button, if you haven't done it yet. When a site builder clicks that action button, your panel will open.
Test your panel across editors. We recommend that you install your app on both a Wix Editor and a Wix Studio site, to check how the panels work and look the way you want them to.