Files Web Part Height Jon (LabKey DevOps)  2016-05-24 15:27
Status: Closed
 
Hi Bront,

Thanks for confirming. So there are two ways to handle this. You can either:

A. Go into the UI and select the little triangle next to the title "Files" on that Files Web Part, select Customize, then change the webpart size from Small to either Medium or Large.

OR

B. Edit the filesWebPart.jsp file (located under the API folder (api/src/org/labkey/api/files/view/filesWebPart.jsp) and change the default value of 350 for the bean.getHeight() to a larger value:

    ActionURL projConfig = urlProvider(AdminUrls.class).getProjectSettingsFileURL(c);
    int height = null == bean.getHeight() ? 350 : bean.getHeight();

I'd probably go with the first option to see if the built-in settings work well enough for you.

Regards,

Jon