B4J Question [SOLVED] First level menu does not trigger the action event

jroriz

Active Member
Licensed User
Longtime User
I created the menu below, but the item "_Fechar" does not trigger the action event.

JSON:
[
    {Text: "_Cadastros", Children:
        [
            "_Jogadores"
        ]
    },
    {Text: "_Fechar", Children:[]}
]
 

Cableguy

Expert
Licensed User
Longtime User
Try

JSON:
[
    {Text: "_Cadastros", Children:["_Jogadores"]},
    {Text: "_Fechar"}
]
 
Upvote 0

jroriz

Active Member
Licensed User
Longtime User
Thanks buddy.
Did not work...
Also, I will need TAG and SHORTCUT KEY ...
I've tried everything ...

Error:
1612625754438.png
 
Upvote 0

EnriqueGonzalez

Well-Known Member
Licensed User
Longtime User
As a matter of fact you can ! You just need a workaround

 
Upvote 0
Top