Dear Experts ,
If i modified a field in card how to display field in list ?Please advise me or share me extension code
Dear Experts ,
If i modified a field in card how to display field in list ?Please advise me or share me extension code
Hi,
to add the field to List you need to create Page Extension to the page which is the list. For example you added field to Item Card then you need as well create Page Extension to Item List.
Then you add just a field as normal for example with Posted Sales Invoices (which is a list):
pageextension 50000 "Posted Sales Invoices Ext." extends "Posted Sales Invoices" { layout { addlast(Control1) { field("My Field"; "My Field") { ToolTip = 'Specifies something...'; ApplicationArea = Basic, Suite, Jobs; } } } }
Hope this helps
Kris