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

IE9 Ajax display

11 Answers 71 Views
Ajax
This is a migrated thread and some comments may be shown as answers.
Trevor
Top achievements
Rank 1
Trevor asked on 18 Jul 2011, 08:23 PM
I have downloaded IE9 and recently installed the latest version of Telerik ASP.NET Ajax controls. I have found that when the ajax spinner is spinning the screen behind it is now turning white when it should be grayed out just like before. However when in compatability view the ajax does work correctly.

Thanks,
Trevor

11 Answers, 1 is accepted

Sort by
0
Sebastian
Telerik team
answered on 19 Jul 2011, 10:01 AM
Hello Trevor,

Can you please verify that you are using the latest Q2 2011 release of our AJAX controls (v.2011.2.712)? This discrepancy has been reported before and should be fixed since the Q1 2011 SP1 version of the suite (check the release notes here).

Best regards,
Sebastian
the Telerik team

Register for the Q2 2011 What's New Webinar Week. Mark your calendar for the week starting July 18th and book your seat for a walk through of all the exciting stuff we will ship with the new release!

0
Andrew
Top achievements
Rank 1
answered on 19 Jul 2011, 02:18 PM
This is exactly the version I have. Same problem.

Thanks,
Trevor
0
Sebastian
Telerik team
answered on 19 Jul 2011, 04:12 PM
Hello Trevor,

Can you post your ajax loading panel definition in this thread to advice you further? A live url where the discrepency can be observed will also be helpful to tackle this abnormality and provide a solution.

Regards,
Sebastian
the Telerik team

Register for the Q2 2011 What's New Webinar Week. Mark your calendar for the week starting July 18th and book your seat for a walk through of all the exciting stuff we will ship with the new release!

0
Trevor
Top achievements
Rank 1
answered on 19 Jul 2011, 04:34 PM

<

 

telerik:RadAjaxPanel ID="RadAjaxPanel7" runat="server" EnableAJAX="true" LoadingPanelID="RadAjaxLoadingPanel1" ClientEvents-OnRequestStart="onRequestStart" >


This is the ajax that I am using.

Trevor
0
Sebastian
Telerik team
answered on 20 Jul 2011, 08:45 AM
Hi Trevor,

I asked for the RadAjaxLoadingPanel definition, not the RadAjaxPanel one. Nevertheless, you can provide them both along with the OnRequestStart handler to examine them and provide an explanation.

Regards,
Sebastian
the Telerik team

Register for the Q2 2011 What's New Webinar Week. Mark your calendar for the week starting July 18th and book your seat for a walk through of all the exciting stuff we will ship with the new release!

0
Trevor
Top achievements
Rank 1
answered on 20 Jul 2011, 02:35 PM
Sorry,

Here it is ...

<

 

telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" Skin="Default" />




function

 

onRequestStart(sender, args) {

if (args.get_eventTarget().indexOf("ExportToExcelButton") >= 0 ||

args.get_eventTarget().indexOf(

"ExportToWordButton") >= 0 ||

args.get_eventTarget().indexOf(

"ExportToPdfButton") >= 0 ||

args.get_eventTarget().indexOf(

"ExportToCsvButton") >= 0 ||

args.get_eventTarget().indexOf(

"btnExportCSV") >= 0)

{

args.set_enableAjax(

false);

}

}

Thanks,
Trevor

0
Sebastian
Telerik team
answered on 25 Jul 2011, 05:13 PM
Hello Trevor,

Your code seems correctly defined. Can you supply a live url where the abnormality can be viewed? Thus I will do everything possible to provide up-to-point answer.

Kind regards,
Sebastian
the Telerik team

Register for the Q2 2011 What's New Webinar Week. Mark your calendar for the week starting July 18th and book your seat for a walk through of all the exciting stuff we will ship with the new release!

0
Ron
Top achievements
Rank 1
answered on 01 Aug 2011, 10:05 PM
Hi,

We are facing similar behavior.  Only our screens does turn gray but we don't see the waiting image anymore in IE9 in normal mode.
In compatibility mode it works ok. It also doesn't  works as expected in Chrome and FireFox.

<telerik:RadAjaxLoadingPanel BackgroundPosition="Right" Skin="Sitefinity" IsSticky="true" ID="RadAjaxLoadingPanel1" runat="server">
</telerik:RadAjaxLoadingPanel>
0
Sebastian
Telerik team
answered on 02 Aug 2011, 09:00 AM
Hello Ron ,

Can you confirm that you are using the latest Q2 2011 release of RadControls for ASP.NET AJAX in your project? If so, you may also try the latest internal build of the controls (available in your Telerik account's > AJAX Product Files Download section) to compare the behavior.

Additionally, check whether removing the isSticky = true setting for the loading panel makes a difference.

Let us know how it goes.

Kind regards,
Sebastian
the Telerik team

Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.

0
Ron
Top achievements
Rank 1
answered on 02 Aug 2011, 12:43 PM
Hi,

We are currently using the Telerik.Web.UI_2011_2_712_Dev_hotfix. The latest internal build did not help us any further regarding the problem. The suggestion with the property sticky="false" did show the image (in all Browser flavors) but on the controls itself.  But for design standardization reasons we want this image to appear on a fixed position in our GUI.
Hopes this help you any further.
0
Pavel
Telerik team
answered on 04 Aug 2011, 06:13 AM
Hello Ron ,

When the IsSticky property is set to true, you need to set position:absolute for the LoadingPanel, as well as dimensions:
<telerik:RadAjaxLoadingPanel BackgroundPosition="Right" Skin="Sitefinity" IsSticky="true" ID="RadAjaxLoadingPanel1"
    runat="server" style="position:absolute; height:100%; width:100%; top:0; left:0;">
</telerik:RadAjaxLoadingPanel>

Regards,
Pavel
the Telerik team

Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.

Tags
Ajax
Asked by
Trevor
Top achievements
Rank 1
Answers by
Sebastian
Telerik team
Andrew
Top achievements
Rank 1
Trevor
Top achievements
Rank 1
Ron
Top achievements
Rank 1
Pavel
Telerik team
Share this question
or