Search code examples
javascriptjqueryjquery-ui-dialogjquery-ui-tabselfinder

elfinder issue with dialog or tabs


I'm having this issue when i include elfinder inside my dialog w/tabs. The footer part overlaps the actual height size but once I resize the navbar (red circle) it auto-resizes perfectly. Anyone know how to fix this?

my jquery elfinder config:

$('#filemanager').elfinder({
        url: '/php/connector.minimal.php',
        defaultView: 'list',
        resizable: false,
        height: 475
    });

It looks like this at first: enter image description here

Then after I resize the navbar (red circle): enter image description here


Solution

  • I was told to try trigger resize on tab open and that worked.

    $('#filemanager').trigger('resize');