can anyone show me how to get a slider control to show numerical increments ?
Ive used the code from the examples here http://demos.telerik.com/ASPNET/Prometheus/Slider/Examples/Skinning/DefaultCS.aspx
but it doesnt work, I get the slider control but because there are no numrical increments with it the user will have no idea what values the slider is selecting. Heres the code Ive used
If I use this
I get an error
Type 'Telerik.Web.UI.RadSlider' does not have a public property named Item
This is strange since its lifted directlry from the example from the link above
Ive used the code from the examples here http://demos.telerik.com/ASPNET/Prometheus/Slider/Examples/Skinning/DefaultCS.aspx
but it doesnt work, I get the slider control but because there are no numrical increments with it the user will have no idea what values the slider is selecting. Heres the code Ive used
<telerik:RadSlider ID="RadSlider1" runat="server" ItemType="tick" TrackPosition="TopRight" |
SlideStep="5" MaximumValue="20" MinimumValue="5" Skin="Vista" Width="100px" onvaluechanged="RadSlider1_ValueChanged" /> |
<telerik:RadSlider runat="server" ID="RadSlider3" Orientation="Horizontal" Height="50" |
ItemType="Item" TrackPosition="BottomRight"> |
<Items> |
<telerik:RadSliderItem Text="Item" Value="1" ToolTip="Very bad" runat="server"></telerik:RadSliderItem> |
<telerik:RadSliderItem Text="Item" Value="2" runat="server"></telerik:RadSliderItem> |
<telerik:RadSliderItem Text="Item" Value="3" runat="server"></telerik:RadSliderItem> |
<telerik:RadSliderItem Text="Item" Value="4" runat="server"></telerik:RadSliderItem> |
<telerik:RadSliderItem Text="Item" Value="5" runat="server"></telerik:RadSliderItem> |
</Items> |
</telerik:RadSlider> |
Type 'Telerik.Web.UI.RadSlider' does not have a public property named Item
This is strange since its lifted directlry from the example from the link above