// Welcome to your new AL extension. // Remember that object names and IDs should be unique across all extensions. // AL snippets start with t*, like tpageext - give them a try and happy coding! pageextension 50400 CustomerCardExt extends "Customer card" { layout { addafter(Name) { usercontrol(Color; ColorPicker) { ApplicationArea = All; trigger ColorPicked(ColorInfo: Text) begin Message(ColorInfo); end; } } } }