| Title: Problem with Layout on Tabs and resizeing the browser window Post by: Stefan B. on August 13, 2014, 01:30:44 AM I have placed a layout on an easyui tab. That's fine. But if I resize the Browser window to a smaller window, no scrollbar is shown for the layout on the tab. What is the problem there? Code: <div class="easyui-layout" data-options="fit:true"> Title: Re: Problem with Layout on Tabs and resizeing the browser window Post by: stworthy on August 13, 2014, 07:33:34 AM You have set the 'north' region panel with a fixed height(400px). Please try to set its height with percentage. Code: <div data-options="region:'north', border:false" class="content-filter" style="height:30%;max-height:400px;"> |