web
You’re offline. This is a read only version of the page.
close
Skip to main content
Community site session details

Community site session details

Session Id :
Dynamics 365 Community / Blogs / My NAV Notes / AL Development in Business ...

AL Development in Business Central – Part 6 How to create a page extension

Community Member Profile Picture Community Member

To create a page extension you need to define the following things:

An example:

pageextension 50101 "CustomerList Ext" extends "Customer List"
{
    layout
    {
        addafter("No.")
        {
            field(Skilled; Skilled)
            {
                ApplicationArea = All;
                ToolTipML = ENG = 'Specifies whether this customer is skilled and followed training.';
            }
        }
    }
}

This was originally posted here.

Comments

*This post is locked for comments