Here is the problem:
when I refresh my page the radsplider render at the last control in the page.
when I change the value using ajax manager to make autopostback and right the value in the label as demostrated in this example (the first example)
http://demos.telerik.com/aspnet/prometheus/Slider/Examples/ServerSideEvents/DefaultCS.aspx
it delays to make a postback and write the value in the label. if i slide again and again I will get this error:
Error: [Exception... "'Sys.WebForms.PageRequestManagerServerErrorException: Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status code returned from the server was: 0' when calling method: [nsIDOMEventListener::handleEvent]" nsresult: "0x8057001c (NS_ERROR_XPC_JS_THREW_JS_OBJECT)" location: "<unknown>" data: no]
I have created a sample project and it does work with out any problem but when I take it to the main project it does not work I have updated every thing the same as my sample project.
here the slider code in my code:
<
asp:Label ID="labelslider" runat="server"></asp:Label>% Complete:<span
class="required">*</span> </td><td class="dataOne" colspan="4">
<telerik:RadSlider ID="RadSlider1" runat="server" AutoPostBack="true" OnValueChanged="RadSlider1_ValueChanged" Skin="WebBlue" />
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="RadSlider1">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="RadSlider1" />
<telerik:AjaxUpdatedControl ControlID="labelslider" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>
protected
void RadSlider1_ValueChanged(object sender, EventArgs e)
{
labelslider.Text = RadSlider1.Value.ToString();
}