Hi
I am working on an NAV 2018/Business Central AL extension.
In this case I have created a page. I want to set up this page like the departments page where we have links to other pages.
but as we cant't use menusuits anymore, this task must be done in other way. I have searched a lot but could't find anything usable.
here is my code:
PageType = Card; UsageCategory = Documents; //SourceTable = TableName; layout { area(Content) { group(Service) { //I need to put the links here... } } }
*This post is locked for comments
I have the same question (0)I have found a solution for that. I use cuegroup.
docs.microsoft.com/.../devenv-cues-action-tiles
cuegroup(SalesActionontainer) { Caption='New Sales Invoice'; actions { action(ActionName) { RunObject=page "Sales Invoice"; Image=TileNew; trigger OnAction() begin end; } } }