mirror of
https://github.com/microsoft/BCQuality.git
synced 2026-08-08 18:31:36 +01:00
Add batch-2 FP guards: sentence-case action captions + primary-key Get is transaction-cached
This commit is contained in:
parent
8fb7f61808
commit
2b401aa38e
3 changed files with 88 additions and 0 deletions
|
|
@ -0,0 +1,38 @@
|
|||
page 50210 "UI Sample Caption Case"
|
||||
{
|
||||
PageType = List;
|
||||
ApplicationArea = All;
|
||||
SourceTable = "Sales Line";
|
||||
|
||||
layout
|
||||
{
|
||||
area(Content)
|
||||
{
|
||||
repeater(Lines)
|
||||
{
|
||||
field("Document No."; Rec."Document No.")
|
||||
{
|
||||
ToolTip = 'Specifies the document number.';
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
actions
|
||||
{
|
||||
area(Processing)
|
||||
{
|
||||
action(ShowSourceDocument)
|
||||
{
|
||||
Caption = 'Show source document';
|
||||
Image = ViewSourceDocumentLine;
|
||||
ToolTip = 'Open the related source document.';
|
||||
|
||||
trigger OnAction()
|
||||
begin
|
||||
Message('%1', Rec."Document No.");
|
||||
end;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue