Razor Page
This article describes how to configure the Telerik UI Rating HtmlHelper for ASP.NET Core in a RazorPage scenario.
For the full project with RazorPages examples, visit our GitHub repository.
@inject Microsoft.AspNetCore.Antiforgery.IAntiforgery Xsrf
@Html.AntiForgeryToken()
@(Html.Kendo().Rating()
.Name("ratingHalf")
.Min(Model.Min)
.Max(Model.Max)
.Value(Model.Value)
.Precision(Model.Precision)
)
public string Precision { get; set; }
public int Min { get; set; }
public int Max { get; set; }
public double Value { get; set; }
public void OnGet()
{
Min = 1;
Max = 10;
Precision = "half";
Value = 7.5;
}