I am working on a custom List page in Dynamics 365 Business Central (AL).
The page layout is structured as follows:
- The page content is divided into two rows:
- Top row displays data from Table 1
- Bottom row is divided into two columns:
- Left column displays data from Table 2
- Right column displays data from Table 3
The layout is already implemented using nested group controls and part pages, and it works correctly from a functional standpoint.
However, from a user experience perspective, I want these sections to be resizable by the user:
- Ability to resize top vs bottom sections
- Ability to resize left vs right sections in the bottom row
I understand that:
- There is no splitter support at the page level in AL
- Splitters, if supported, are handled via group containers
My questions are:
- What is the correct and supported way to implement horizontal and vertical splitters between such sections using group controls?
- Are there any limitations or best practices when using splitters on List pages?