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

Multiple Horizontal Sliders and IE8

1 Answer 50 Views
Slider
This is a migrated thread and some comments may be shown as answers.
michael
Top achievements
Rank 1
michael asked on 02 Oct 2009, 06:45 AM
We are rendering the sliders dynamically in datalist as follow:

<asp:DataList ID="dlIndicator" runat="server" CellPadding="0" CellSpacing="4" RepeatColumns="3" RepeatDirection="Horizontal"
            <ItemTemplate> 
                <table cellpadding="0" cellspacing="2" border="0"
                    <tr><td>&nbsp;</td><td><%#Eval("Name")%></td><td>&nbsp;</td></tr
                    <tr> 
                        <td valign="top"
                            <asp:CheckBox ID="chkIndicator" runat="server" /><asp:HiddenField ID="hdnIndicatorDomain" 
                                runat="server" Value='<%#Eval("IndicatorID")%>' /><asp:HiddenField ID="hdnIndicatorValue" runat="server"  Value='<%#Eval("Value_")%>'/> 
                        </td> 
                        <td> 
                            <telerik:RadSlider ID="rslIndicator" runat="server" MinimumValue="0" MaximumValue="100" 
                                Value="50" OnClientValueChange="HandleValueChange" OnClientLoaded="HandleValueChange" 
                                Skin="Vista" SmallChange="5" Width="100px" /> 
                        </td> 
                        <td> 
                            <asp:Label ID="lblIndicator" runat="server"></asp:Label>
                        </td> 
                    </tr> 
                </table> 
            </ItemTemplate> 
        </asp:DataList> 

<script type="text/javascript" defer="defer"
                function HandleValueChange(sender, eventArgs) 
                { 
                    var spnid = sender.get_id().replace("rslIndicator","lblIndicator"
                    document.getElementById(spnid).innerHTML = sender.get_value(); 
                } 
    </script> 
 


The issue is.. the sliders working fine in IE7.. but not in IE8.
In IE8, when we drag handle in one slider, it automatically drags handles on other sliders.

We are using telerik version : 2008.03.1314.35

1 Answer, 1 is accepted

Sort by
0
Tsvetie
Telerik team
answered on 07 Oct 2009, 12:02 PM
Hello Michael,
This is expected as IE8 was released in the beginning of 2009 and you are using a version from 2008. When IE8 was released, we released an SP that introduced support for IE8 - Q1 2009 SP1. That is why, in case you upgrade to Q1 2009 SP1 or to a later version, the slider will behave as expected in the described scenario.

All the best,
Tsvetie
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Tags
Slider
Asked by
michael
Top achievements
Rank 1
Answers by
Tsvetie
Telerik team
Share this question
or