New to Telerik UI for ASP.NET Core? Start a free 30-day trial
Ajax Data Binding
Updated on Oct 24, 2025
The TabStrip provides support for remote data binding by using AJAX to load tab content from remote URLs.
When using remote data binding, the TabStrip can load content asynchronously when tabs are activated, providing optimal performance by loading content on-demand as users navigate through the tabs. The remote endpoints return HTML content that is loaded directly into the tab content area.
The following example shows how to configure the TabStrip for remote data binding with AJAX content loading.
Razor
@(Html.Kendo().TabStrip()
.Name("tabstrip")
.Items(tabstrip =>
{
tabstrip.Add().Text("Paris")
.LoadContentFrom(Url.Action("Paris", "Home"))
.Data("additionalData")
.Type(HttpVerbs.Post);
tabstrip.Add().Text("Sofia")
.LoadContentFrom(Url.Action("Sofia", "Home"));
})
)