New to Telerik UI for ASP.NET MVC? Start a free 30-day trial
Model Binding
Updated on Dec 10, 2025
When using the Telerik UI for ASP.NET MVC Rating component, you can bind the value to an arbitrary model property by using the RatingFor Helper.
C#
public ActionResult Index()
{
var model = new RatingModel
{
Rating = 7
};
return View(model);
}