Hi,
How can I create an action group on the navigation area like the screenshot?
I see that in the NAV development environment that is called action group but I cannot find it on visual code.
Hi,
How can I create an action group on the navigation area like the screenshot?
I see that in the NAV development environment that is called action group but I cannot find it on visual code.
Hi,
can you provide a sample code or help me modify my code? It is still not added under a group. The section is my extended section on the navigation area and I want to group actions inside it. See my code and what it shows:
I want it to look like this:
Please help me fix my code.
Your'se using addlast(Section), so it's added as last of the action section called "Section".
I think it should be something like:
addlast(Reporting)
Check what is the name of your section where you want to add the groups.
Hello,
It isn't grouped under Report group. It also shows an error. See screenshot below:
My code is below. I have added a group but it is still not inside or grouped under Report group.
Hello,
It isn't grouped under Report group. It also shows an error. See screenshot below:
My code is below. I have added a group but it is still not inside or grouped under Report group.
Can use Group Function like below :
group(ActionGroupCRM)
{
action(CRMGotoInvoice)
{
//action 1
}
action(CreateInCRM)
{
//action 2
}
action(ShowLog)
{
//action 3
}
}
This is the way:
area(processing)
{
group(YourActionGroupName)
{
action(YourAction)
{
}
}
}