This question is locked. New answers and comments are not allowed.
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
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
<html xmlns="http://www.w3.org/1999/xhtml"> <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>