I want the Quickactionbar to expand when my containerbox named ‘helpbox’ is clicked. E.g to go from a little circle with 3 dots in the bottom right of the mobile screen, to showing the contact options.
I have tried using .show and .expand as in the code below both on their own and together and nothing works. (The open contactbox which is a separate function not related to the quickactionbar does work. )
export function helpbox_click ( event )
{
if ( wixWindow . formFactor === “Mobile” )
{
$w ( ‘#quickActionBar1’ ). show ();
$w ( ‘#quickActionBar1’ ). expand ();
}
else
{
$w ( “#contactbox” ). show ();
}
}
Thank you!