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

Ajax Data Binding

The PanelBar provides support for remote data binding by using a DataSource configuration object.

@(Html.Kendo().PanelBar()
    .Name("panelbar")
    .DataTextField("Name")
    .DataSource(dataSource => dataSource
        .Read(read => read
            .Action("Read_PanelBarData", "Home")
        )
    )
)

See Also

See Also
Not finding the help you need?
Contact Support