Hi
I have created a menu in navigation pane from my extension. But I can't create submenus in there.
As it is now I have:
Service 1
Service 2
But I want it to be
Service
- Service 1
-Service 2

My code:
{
actions
{
addlast(Sections)
{
group("TEST Service")
{
action("Service 1")
{
RunObject = page "Service Orders";
ApplicationArea = All;
}
action("Service 2")
{
RunObject = page "Service Orders";
ApplicationArea = All;
}
}
}
}
}
*This post is locked for comments
I have the same question (0)