This is a migrated thread and some comments may be shown as answers.

Image Browser: endless loading animation after creating a folder

1 Answer 196 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Taras
Top achievements
Rank 2
Taras asked on 13 Jun 2017, 10:30 AM

The issue is reproducible on demo page: http://demos.telerik.com/kendo-ui/editor/inline-editing.

Open image browser, create a folder - loading animation is persisting.

To workaround the issue I added the code below to execute handler. But it would be nice to have the issue fixed in Kendo UI.

execute: function (e) {
    else if (e.name == "insertimage") {
        $timeout(function () {
            var imagebrowser = $("[data-role=imagebrowser]").data("kendoImageBrowser");
                imagebrowser.dataSource.bind("requestEnd", function() {
                    kendo.ui.progress($("body"), false);
                });
            });
        }
    }

1 Answer, 1 is accepted

Sort by
0
Accepted
Veselin Tsvetanov
Telerik team
answered on 15 Jun 2017, 07:14 AM
Hi Taras,

The observed is a known issue in the Editor Image browser functionality. I would suggest you to track this bug status on GitHub and update the version of Kendo you are using, as soon as the bug has been fixed.

Thank you for the proposed workaround, as it is a viable approach in the described scenario.

Regards,
Veselin Tsvetanov
Progress Telerik
Try our brand new, jQuery-free Angular 2 components built from ground-up which deliver the business app essential building blocks - a grid component, data visualization (charts) and form elements.
Tags
Editor
Asked by
Taras
Top achievements
Rank 2
Answers by
Veselin Tsvetanov
Telerik team
Share this question
or