New to Telerik UI for ASP.NET Core? Start a free 30-day trial
PanelBar in Razor Pages
Updated on Oct 24, 2025
Razor Pages is an alternative to the MVC pattern that makes page-focused coding easier and more productive. This approach consists of a cshtml file and a cshtml.cs file (by design, the two files have the same name).
You can seamlessly integrate the Telerik UI PanelBar for ASP.NET Core in Razor Pages applications.
This article describes how to configure the PanelBar component in a Razor Pages scenario.
For the complete project, refer to the PanelBar in Razor Pages example.
Getting Started
In order to set up the PanelBar component bindings, you need to configure the Read method of its DataSource instance. The URL in this method should refer the name of the method in the PageModel.
Razor
     
    @inject Microsoft.AspNetCore.Antiforgery.IAntiforgery Xsrf
	@Html.AntiForgeryToken()
	
	@(Html.Kendo().PanelBar()
        .Name("panelbar")
        .DataTextField("Name")
        .DataSource(dataSource => dataSource
            .Read(read => read
                .Url("/PanelBar/PanelBarRemoteData?handler=Read")
            )
        )
	)