Menu wrong behavior

5 messages - 892 views

The next works fine

<popupMenu>           
          <menu>
                Opciones
                <popupmenu>
                    <menuitem onAction="reactivar">Reactivar</menuitem>
                    <menuitem>Otro</menuitem>
                </popupmenu>
           </menu>
            <menuItem onAction="Menu1" shortcuts="0">Mimenu</menuItem>
            <menuItem onAction="Menu2">Menu 2</menuItem>
            <menuItem>Menu 3</menuItem>  
</popupMenu>

 

but this no, can´t go to Opciones Menu

<popupMenu>           

            <menuItem onAction="Menu1" shortcuts="0">Mimenu</menuItem>
            <menuItem onAction="Menu2">Menu 2</menuItem>
            <menuItem>Menu 3</menuItem>
          <menu>
                Opciones
                <popupmenu>
                    <menuitem onAction="reactivar">Reactivar</menuitem>
                    <menuitem>Otro</menuitem>
                </popupmenu>
           </menu>             
</popupMenu>

 

Thanks

Hi,

I've tried your code (in first and second system menu) and it seems that there is an other problem than the one you are describing : The first menu works fine as you say but the second makes the right key going into the opciones menu from everywhere in the popup menu.

Yes, If you press the rigth key when the popupmenu it´s diplayed the "opciones" menu it´s show but if you are in the top menuitem

and press the down key you can go until third menuitem but not to "opciones" menu.

If you select the "opciones" menu and press Ok, or Right key, does it work in the two cases ?

Else, at present, when you press the Right key, only forward submenus (down) could be opened. (this will be fixed in the next release)

When the "opciones" menu is the first in the popupmenu work great, but if not when press down it´s imposible reach "opciones" menu(In the second case if you press right in any menuitem on popupmenu then "opciones" menu is show).

 

Thanks