Business Central Scroll bar issue while accesssing in mobile browser

kk123kk123 Member Posts: 9
Hi All,
I created a list page in Business Central 18 On-premises. when I access that page in a mobile browser, Left&Right swipe not working. But if I open any default list pages swipe is working fine.
Noticed the difference between the default page Vs customized page. In customized page horizontal scroll bar is not showing fully. May be because of that I am facing the swiping issue. Any IDEA how to fit the page as per screen?

Thanks & Regards,
Kishoren4d95if6ajiz.jpg

Answers

  • kk123kk123 Member Posts: 9
    This is the code:


    page 50009 "InProcess DC List"
    {
    ApplicationArea = Basic, Suite;
    Caption = 'InProcess DC List';
    CardPageId = "InProcess DC";
    Editable = false;
    PageType = List;
    QueryCategory = 'InProcess DC';
    RefreshOnActivate = true;
    SourceTable = "DC Header";
    SourceTableView = WHERE(Posted = CONST(true), "Sent for Approval" = CONST(false));
    UsageCategory = Lists;
    layout
    {
    area(content)
    {
    repeater(control1)
    {
    field("Delivery Date"; Rec."Delivery Date")
    {
    ApplicationArea = all;
    }
    field("Document No."; Rec."Document No.")
    {
    ApplicationArea = all;
    }
    field("Area Name"; Rec."Area Name")
    {
    ApplicationArea = all;
    }
    field("Total Orders"; Rec."Total Orders")
    {
    ApplicationArea = all;
    }
    field("Delivery person"; Rec."Delivery person")
    {
    ApplicationArea = all;
    }
    field("Vehicle No."; Rec."Vehicle No.")
    {
    ApplicationArea = all;
    }
    field("Driver Name"; Rec."Driver Name")
    {
    ApplicationArea = all;
    }
    }
    }
    }
    actions
    {
    area(navigation)
    {
    group("&DC")
    {
    Caption = '&DC';
    action("&Card")
    {
    Caption = '&Card';
    RunObject = Page "InProcess DC";
    RunPageLink = "Document No." = FIELD("Document No.");
    ShortCutKey = 'Shift+F5';
    }
    }
    }
    }
Sign In or Register to comment.