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

All Popups not functioning after IE10 update.

2 Answers 54 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Cameron
Top achievements
Rank 1
Cameron asked on 12 Apr 2013, 08:29 PM
Hi,

With many of our clients now moving to IE10, we've had to upgrade our Telerik products as well. We're using ASP.NET.
In most cases the RadEditor and its popups are displaying correctly.

However when I am trying to dynamically add it onto a webform, the popup does not display as expected and is completely non-functional.

Upon clicking the Image Manager, the following happens.
I am attaching a screen capture so you may have a look at it.

To me it looks like some CSS is not getting applied, but I cannot understand why there would be any missing CSS.

Any help would be appreciated.

FYI: I am using Visual Studio 2010, C#. The version we've upgraded to is: v4.0.30319.

Thanks,
Cameron

2 Answers, 1 is accepted

Sort by
0
Joana
Telerik team
answered on 16 Apr 2013, 09:52 AM
Hi Cameron,

We are not aware of such an issue and I was not able to reproduce it with the latest version of the controls. Can you confirm this is what you are using? It is currently Q1 2013 SP1 (2013.1.403).

What I can suggest at this point is that you try the following:
- make sure that you are using the latest version
- clear the browser cache and the ASP cache
- disable the plugins in the problematic browser because some of them may be interfering with the page
- remove all custom CSS from the page and see if the issue is gone (again, after clearing the cache)
- if you have custom CSS files for the dialogs (set through the DialogsCssFile property) - try removing it to see if this changes things


Regards,
Joana
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0
Cameron
Top achievements
Rank 1
answered on 16 Apr 2013, 01:31 PM
Hello Joana,

Thank you for your suggestions.

My presumption was correct: The necessary resource files were not getting loaded.
The reason they were not getting loaded was because the radeditor control was being added dynamically onto the form and then summarily hidden.

Since it was hidden, the resource files no longer were being loaded. 

As such, the dialogs all appeared without the needed CSS.

How did I fix this?

I fixed this by removing the code in the code-behind to hide the controls
Then by hiding the controls on the form using Javascript (JQuery).

On the form I placed in the
$(document).ready(function()  {});
the code to hide the controls.

This proved my assumption as now everything displayed correctly.

Thank-you,
Cameron
Tags
Editor
Asked by
Cameron
Top achievements
Rank 1
Answers by
Joana
Telerik team
Cameron
Top achievements
Rank 1
Share this question
or