This example shows how Telerik Slider for ASP.NET MVC can be used to edit Model property.
You can decorate your model with metadata attributes to specify its data type, UI hint (name of the ASCX to use) etc:
[UIHint("Slider")]
public decimal UnitPrice
{
get;
set;
}
You can review ProductDto.cs file for more information.
The next step is to create user control, which will be used to edit the Model property. In this demo Slider.ascx is used to edit the UnitPrice property.