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

No hover effect over Select button

2 Answers 107 Views
AsyncUpload
This is a migrated thread and some comments may be shown as answers.
Vasssek
Top achievements
Rank 1
Vasssek asked on 24 Nov 2010, 03:17 PM
Hello Telerik Team,

I want to know why hovering over select button isn't showed in the Q3 2010 ?

The issue is viewable here:
http://demos.telerik.com/aspnet-ajax/upload/examples/async/monitorprogress/defaultcs.aspx?product=asyncupload

The last version in which was hovering functional was 2010.2.803...

Best regards

Vasssek

2 Answers, 1 is accepted

Sort by
0
Accepted
Genady Sergeev
Telerik team
answered on 25 Nov 2010, 03:38 PM
Hello Vasssek,

The hover state is lost when the Flash/Silevrlight module is being used. By default, RadAsyncUpload will use the Silverlight module, if there is no Silverlight installed it will try Flash, if there is no Flash, it will stick to the traditional IFrame approach. And the thing is that only the IFrame module will have hover state. The problem is that both Flash and Silverlight will 'eat' the hover event and it will not reach the select button, effectively leaving it without a hover state. We are aware of this problem and are currently searching for a workaround.

Kind regards,
Genady Sergeev
the Telerik team
Browse the vast support resources we have to jumpstart 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
Vasssek
Top achievements
Rank 1
answered on 25 Nov 2010, 05:18 PM
Hello Genady,

because we don't use flash in our application I've disabled using of flash with this line right before control is declared on the page:
<script type="text/javascript">   
  Telerik.Web.UI.RadAsyncUpload.Modules.Flash.isAvailable = function () { return false; }
</script>

Now, I've tried to use something similar for disabling silverlight and hovering effect over select button has started to work :)).
<script type="text/javascript">   
  Telerik.Web.UI.RadAsyncUpload.Modules.Flash.isAvailable = function () { return false; } 
  Telerik.Web.UI.RadAsyncUpload.Modules.Silverlight.isAvailable = function () { return false; }
</script>

So, thank you for your detailed information about this issue...

Have a nice day.

Vasssek
Tags
AsyncUpload
Asked by
Vasssek
Top achievements
Rank 1
Answers by
Genady Sergeev
Telerik team
Vasssek
Top achievements
Rank 1
Share this question
or