Hi:
Below in italics is my AL code for a test List Page that I'm creating in my Sandbox.
The page "works", except for one thing. It will not let me enter more than one record into the page.
Immediately upon trying to enter the second record by filling in the first field, Business Central gives me the "F5" error telling me to refresh.
Why is that, and how can I fix this?
Thanks!
John
page 50112 "Playlist Item Rate Test"
{
PageType = List;
ApplicationArea = Basic;
UsageCategory = Lists;
SourceTable = "Playlist Item Rate Test";
layout
{
area(Content)
{
repeater(Group)
{
field("Description"; "Description") { ApplicationArea = Basic; }
field("Item No."; "Item No.") { ApplicationArea = Basic; }
field("Rate Amount"; "Rate Amount") { ApplicationArea = Basic; }
field("Test"; "Test") { ApplicationArea = Basic; }
}
}
}
}