New to Telerik UI for ASP.NET Core? Download free 30-day trial

Razor Page

This article describes how to configure the Telerik UI Rating 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)
    )

    <kendo-rating name="ratingHalf"
                min="@Model.Min"
                max="@Model.Max"
                value="@Model.Value"
                precision="@Model.Precision">
    </kendo-rating>

    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;
    }

See Also

In this article