bcquality/microsoft/knowledge/ui/use-grid-data-table-pattern-consistently.good.al
Jesper Schulz-Wedde 5bcdc55df9 Sync knowledge articles with review agent instructions
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-05-05 14:08:32 +02:00

29 lines
707 B
AL

page 50732 "UI Grid Good"
{
layout
{
area(Content)
{
grid(BalanceGrid)
{
GridLayout = Columns;
group(CustomerColumn)
{
ShowCaption = false;
field(CustomerName; Rec."Customer Name")
{
ShowCaption = false;
}
}
group(BalanceColumn)
{
ShowCaption = false;
field(Balance; Rec.Balance)
{
ShowCaption = false;
}
}
}
}
}
}