planetfederal / GeoExplorer

Notice: This application has been folded into the OpenGeo Suite repository
https://github.com/opengeo/suite/blob/dev/geoexplorer/README.md
BSD 3-Clause "New" or "Revised" License
78 stars 60 forks source link

Layermanager overflow (GeoExplorer.js) #21

Closed vandaemb closed 12 years ago

vandaemb commented 12 years ago

The westpanel (containing the layermanager) does not display vertical scrollbars. This was fixed in previous versions, but seems to have been forgotten in the latest updates. Setting the autoScroll parameter for the westpanel solves this issue.

        var westPanel = new Ext.Panel({
            id: "tree",
            region: "west",
            width: 300,
            split: true,
            autoScroll: true,
            collapsible: true,
            collapseMode: "mini",
            hideCollapseTool: true,
            header: false
        });