RadSlider for ASP.NET AJAX

RadControls for ASP.NET AJAX

OnValueChanged

The RadSlider control raises a server-side event, ValueChanged that fires when the user changes the Value with the mouse or mouse wheel. Set the AutoPostBack property True to raise the event right after the value is changed on the client. Retrieve the Value property within the ValueChanged event handler:

OnDataBound

The OnDataBound sever-side event of the RadSlider fires when all its items are loaded from a specified data source. You can use this event when you are data binding the RadSlider and you want to execute logic that relies on already loaded items. The example below demonstrates setting the fouth item of a data-bound RadSlider as a selected item:

See Also