microsoft / AL

Home of the Dynamics 365 Business Central AL Language extension for Visual Studio Code. Used to track issues regarding the latest version of the AL compiler and developer tools available in the Visual Studio Code Marketplace or as part of the AL Developer Preview builds for Dynamics 365 Business Central.
MIT License
730 stars 243 forks source link

can i add new group in a page(Card) extension #5999

Closed eat110 closed 4 years ago

eat110 commented 4 years ago

I want add a new group in a page(Card) extension. i get a error when I use this pageextension 50100 SalesOrderExt extends "Sales Order" { layout { addlast(Delivery) {

    }
 }

} The control 'Delivery' is not found in the target 'Sales Order'

qutreson commented 4 years ago

The AL syntax for it is:

addlast(AnchorName) // Existing control on the page
{
       group(NewGroupName) { } // New group
}

For more information, see https://docs.microsoft.com/en-us/dynamics365/business-central/dev-itpro/developer/devenv-page-ext-object