New to Telerik UI for ASP.NET Core? Start a free 30-day trial
Model Binding
When using the Telerik UI for ASP.NET Core 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);
}