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

RadSlider is not working properly with IE9

3 Answers 90 Views
Slider
This is a migrated thread and some comments may be shown as answers.
Charles Entlogic
Top achievements
Rank 1
Charles Entlogic asked on 04 Jan 2012, 01:35 PM
Hi,
   I have a textbox and a RadSlider control in my webpage. On dragging the radslider, the value inside the textbox will get changed.
Its working properly with all other browsers except IE9. In IE9, I am unable to drag the RadSlider control. I am using the RadAjax.Net2.dll of version 1.8.1.0.
Hope you guys will give me a good solution to resolve this issue. Waiting for your reply.

Regards,
Charles

3 Answers, 1 is accepted

Sort by
0
Svetlina Anati
Telerik team
answered on 04 Jan 2012, 02:02 PM
Hello Charles,

 Can you please provide some sample runnable code? In the common case this scenario works fine, e.g in our online demo below:

http://demos.telerik.com/aspnet-ajax/slider/examples/valueandrange/defaultcs.aspx

Once we receive the sample code along with confirmation of the version of RadControls, we will examine it and we will modify it in order to meet your requirements so that you will be then able to apply the same logic in your original application.

Kind regards,
Svetlina Anati
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
Charles Entlogic
Top achievements
Rank 1
answered on 13 Jan 2012, 01:26 PM
Hi,
   The below is code is the sample code I have created. It is also not working with IE9. I am using the Telerik.Web.UI dll of product version 2008.03.1105.35.

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default3.aspx.cs" Inherits="Default3" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
</head>
<body class="BODY">
    <form id="Form1" method="post" runat="server">
    <asp:ScriptManager ID="script" runat="server">
    </asp:ScriptManager>
    <script type="text/javascript">
        function HandleValueChanged(sender,eventArgs)
        {
            $get("sliderValue").value = sender.get_value();
        }
    </script>
    <b>MinimumValue</b> set to 10, <b>MaximumValue</b> set to 20, <b>Value</b> set to
    12.
    <br />
    <telerik:RadSlider ID="RadSlider1" runat="server" MinimumValue="10" MaximumValue="20"
        Value="12" OnClientValueChanged="HandleValueChanged" OnClientLoad="HandleValueChanged" />
    <br />
    <input type="text" style="width: 30px;" id="sliderValue" /><br />
    <br />
    </form>
</body>
</html>

0
Slav
Telerik team
answered on 17 Jan 2012, 04:07 PM
Hello Charles,

Please try upgrading to the latest version of the RadControls for ASP.NET AJAX, as I noticed that you are using quite old version, which was released much before Internet Explorer 9. As you can check in the online demo that Svetlina provided, the same scenario functions as expected with the latest release of RadControls.

Regards,
Slav
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
Tags
Slider
Asked by
Charles Entlogic
Top achievements
Rank 1
Answers by
Svetlina Anati
Telerik team
Charles Entlogic
Top achievements
Rank 1
Slav
Telerik team
Share this question
or