Hi everyone,
I encountered issue with this sample code just today (21/11/2024), yesterday it is working fine, now, the page is not opening, its loading forever.
Hope you can help me on this.
Thank you
page 70011 "List Part With Grid"
{
ApplicationArea = All;
Caption = 'List Part With Grid';
PageType = ListPart;
SourceTable = "Buffer Table";
layout
{
area(Content)
{
grid(Control10)
{
ShowCaption = false;
Editable = false;
GridLayout = Columns;
group(Control11)
{
repeater(General)
{
field("Entry No."; Rec."Entry No.")
{
ToolTip = 'Specifies the value of the Entry No. field.', Comment = '%';
}
}
}
cuegroup(Control12)
{
ShowCaption = false;
CuegroupLayout = Wide;
actions
{
action(Action1)
{
ApplicationArea = All;
trigger OnAction()
var
begin
end;
}
}
}
}
}
}
}