1
While navigating from and to the filemanager, the explorer disappears.
Problem reported by Support Floow - 7/25/2024 at 12:50 AM
Resolved
While navigating fast from and to filemanager, it looks like the filemanager does not expand. After doing this for a while the line disappears also. In the network tab of the developer tools in Chrome. The ashx call is not anymore called.

3 Replies

Reply to Thread
1
Cem Alacayir Replied
Employee Post
Well this your own UI, for example if you are setting fileManager width and height to 100% then it will fit it's container and in your case if your container size is collapsed then the child fileManager will also collapse.

So check your container element and ensure it's getting a proper size. Or you can give fileManager specific width and height.
0
Support Floow Replied
Setting the width and height solved the issue. Thanks for responding this fast :)
0
Cem Alacayir Replied
Employee Post Marked As Resolution
FYI, we have a new version which may help if you need to use width 100% and height 100% for FileManager:

Version 9.0.5 - August 6, 2024

  • Fixed: FileManager and FileUploader will render a placeholder tag along with the script tag.
    We need a tag other than script tag for the component even if we render DOM on the client side.
    For example, Kendo UI Window, removes/moves script tags from content html so component is rendered to wrong place
    and not inside the window.

    Kendo UI Window has this code which caused the issue:
    // remove script blocks to prevent double-execution
    element.find("script").filter(executableScript).remove();

  • Improved: FileManager and FileUploader will now be resized automatically when the parent DOM element resizes via using
    ResizeObserver in supported browsers. This espacially useful when component width or height is given in percentage and not in pixels.
    For example, when you put FileManager or FileUploader inside Kendo UI Window, they will be resized when the window is maximized.

Reply to Thread