Right now I could figure out that only one image is possible for both the drag handlers.
I need it in urgent. Please suggest regarding that ASAP.
Arun.
3 Answers, 1 is accepted
Both the handles have the same CSS class applied and thus you could not set different images for them based on the class selector. However, they do have different IDs set and you could use them, e.g as shown below:
<%@ Page Language="C#" %>
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<
html
xmlns
=
"http://www.w3.org/1999/xhtml"
>
<
head
runat
=
"server"
>
<
title
>Untitled Page</
title
>
<
style
type
=
"text/css"
>
#RadSliderDrag_slider
{
background-image: url(DragHandle1.gif) !important;
}
#RadSliderEndDrag_slider
{
background-image: url(DragHandle2.gif) !important;
}
</
style
>
</
head
>
<
body
>
<
form
id
=
"form1"
runat
=
"server"
>
<
telerik:RadScriptManager
ID
=
"RadScriptManager2"
runat
=
"server"
>
</
telerik:RadScriptManager
>
<
telerik:RadSlider
ID
=
"slider"
runat
=
"server"
IsSelectionRangeEnabled
=
"true"
>
</
telerik:RadSlider
>
</
form
>
</
body
>
</
html
>
I hope that my reply is helpful and for your convenience I attached a sample demo.
Greetings,
Svetlina
the Telerik team

I have another issues. When I set the slider control property "Enabled=false" then the control is disabled, thats ok but the color of that control becoming faded out.
So is there anyway my control will remain disabled but the color shouldn't be faded out. Need your attention ASAP
Arun
I am not sure whether I understood you correctly - as far as I understand you want the slider to look in the same way when it is enabled and when it is disabled. If so, you can use one of the following approaches:
1) Override the rslDisabled CSS class to remove the filter and the opacity
2) You can use javascript to remove this class when you toggle the enable state of the slider
For your convenience I attach a sample page with the first approach. Note, however, that having the same appearance when enabled and disabled might be confusing for the end user.
Svetlina
the Telerik team