Subgroups in Navigation Pane

PConijnPConijn Member Posts: 31
According to the Dynamics documentation here, you can create subgroups in the Sections area of the navigation pane.

So I enthusiastically created the sample code below and published it.

actions
{
	area(Sections)
	{
		group(Setup)
		{
			Caption = 'Setup';
			Image = Setup;

			group(Dynamics) // This is the grouping level
			{
				Caption = 'Dynamics';
				Image = Documents;
									
				action(IncomingDocuments)
				{
					Caption = 'Incoming Documents';
					RunObject = Page "Incoming Documents";
					ApplicationArea = All;
				}
				action(SMTPEMailSetup)
				{
					Caption = 'SMTP E-mail Setup';
					RunObject = Page "SMTP Mail Setup";
					ApplicationArea = All;
				}
			}
		}
	}
}

To my surprise and disappointment, however, the grouping is not showing up in the navigation pane.

ene9665qb0m7.png

Strangely, when I customize the navigation pane, the group suddenly does show.

fv74439t3syx.png


Is this a bug, a design or am I missing something?
Kind Regards,

Peter Conijn

-The Learning Network-

Sign In or Register to comment.