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

[Solved] FileBrowser image thumbnails problem in IE8.

2 Answers 34 Views
Editor
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Andrew
Top achievements
Rank 1
Andrew asked on 03 Aug 2011, 12:36 PM
Version: 2011.2.712

Hi

I'm using IE8 on Windows 7 (x64). When I load a page with the editor and click the insert image icon to open the file browser the thumbnail image displays correctly. However when the popup is closed and opened again the thumbnail images do not display but instead only display the loading icons. I can also reproduce this using the demo examples. 

Please see attached files.

Is there any know work around for this? The file browser works as expected in Google Chrome on the same machine.

Many thanks
Andrew

<head>
    <title></title>
        <%=Html.Telerik().StyleSheetRegistrar().DefaultGroup(group => group.Add("telerik.common.css").Add("telerik.windows7.css"))%>
        <style type="text/css">        
            body { font-family: Arial; font-size: 0.75em; }        
        </style>
</head>
<body>
    <%
        using (Html.BeginForm())
        {%>
    <%
            Html.Telerik().Editor()
                .Name("Editor")
                .Value("")
                .Tools(tools => tools
                                    .Clear()
                                    .Bold().Italic().Underline().Strikethrough()
                                    .Separator()
                                    .JustifyLeft().JustifyCenter().JustifyRight()
                                    .Separator()
                                    .InsertUnorderedList().InsertOrderedList()
                                    .Separator()
                                    .Outdent().Indent()
                                    .Separator()
                                    .FormatBlock(x => x.Add("Heading", "h3").Add("Paragraph", "p").Add("Quotation", "blockquote"))
                                    .Separator()
                                    .CreateLink().Unlink()
                                    .Separator()
                                    .InsertImage())
                .FileBrowser(x => x.Browse("Browse", "ImageBrowser")
                                      .Thumbnail("Thumbnail", "ImageBrowser")
                                      .Upload("Upload", "ImageBrowser")
                                      .DeleteFile("DeleteFile", "ImageBrowser"))
                .Render();
%>
    <%
        }%>
  
                <%=Html.Telerik().ScriptRegistrar()%>
</body>
</html>

2 Answers, 1 is accepted

Sort by
0
Rosen
Telerik team
answered on 04 Aug 2011, 09:41 AM
Hi Andrew,

Indeed, I was able to observe the behavior you have described. We have address it and I'm attaching a modified version of telerik.imagebrowser.min.js file. I have also updated your telerik points.

Regards,
Rosen
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items

0
Andrew
Top achievements
Rank 1
answered on 04 Aug 2011, 03:11 PM
Awesome!

Thanks for the speedy fix.

Cheers
Andrew
Tags
Editor
Asked by
Andrew
Top achievements
Rank 1
Answers by
Rosen
Telerik team
Andrew
Top achievements
Rank 1
Share this question
or