mirror of
https://github.com/microsoft/BCQuality.git
synced 2026-08-08 10:26:52 +01:00
Make BCQuality aware of ToolTips definied on the source
This commit is contained in:
parent
712dee9ec1
commit
48ead8fc21
6 changed files with 68 additions and 13 deletions
|
|
@ -1,3 +1,16 @@
|
|||
tableextension 50250 "Sample Tooltip Good Ext" extends Customer
|
||||
{
|
||||
fields
|
||||
{
|
||||
field(50250; "Loyalty Points"; Integer)
|
||||
{
|
||||
Caption = 'Loyalty Points';
|
||||
DataClassification = CustomerContent;
|
||||
ToolTip = 'Specifies the number of loyalty points the customer has collected.';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
page 50250 "Sample Tooltip Good"
|
||||
{
|
||||
PageType = Card;
|
||||
|
|
@ -8,17 +21,20 @@ page 50250 "Sample Tooltip Good"
|
|||
{
|
||||
group(General)
|
||||
{
|
||||
field("No."; Rec."No.")
|
||||
field("Loyalty Points"; Rec."Loyalty Points")
|
||||
{
|
||||
ApplicationArea = All;
|
||||
ToolTip = 'Specifies the number that identifies the customer.';
|
||||
}
|
||||
field(Amount; Rec."Balance (LCY)")
|
||||
field(BalanceDue; BalanceDueAmount)
|
||||
{
|
||||
ApplicationArea = All;
|
||||
ToolTip = 'Shows the total balance in local currency.';
|
||||
Caption = 'Balance Due';
|
||||
ToolTip = 'Shows the total balance due in local currency.';
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
var
|
||||
BalanceDueAmount: Decimal;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue