So I made post on this Forum (https://www.wix.com/code/home/forum/community-discussion/close-panel-when-clicking-outside-the-box) where I asked how to make a box disappear when you click outside it. And I’m super excited to show you that I managed to do it!
So I used a pretty cool trick and I hope it’ll be helpful for you too!
Step 1: Add any Wix element that can be focused (has the “onFocus” event) to your panel/box, I used a text input.
Step 2: Change the settings of your element so the users can’t edit or see it. In my case where I used a text input I set the mandatory to false and the read only to true. Then I changed the design of it so you can’t see it.
Step 3: Add the following line of code to the function that shows the panel (adapt to your case):
export function panelbutton_click(event, $w) {
$w("#panel").hide();
$w("#input1").focus(); // <-- Add this line
}
Step 4: Add a global variable to your Site code (if the panel/box appears on all pages) like so:
let panelfocus = false; // must be outside any scope so it's Global
Step 5: Create an “onBlur” event for the element and make it so it’s like the following code (adapt to your case):
if (panelfocus === false) {
$w("#panel").hide();
$w("#input9").focus();
}
Step 6: Add the “mouseIn” and “mouseOut” events to your panel/box and make it so it’s like the following code (adapt to your case):
export function panel_mouseIn(event, $w) {
panelfocus = true;
}
export function panel_mouseOut(event, $w) {
panelfocus = false;
}
Leave a comment if you have found something that is missing or if you need help ;D