New to Telerik UI for ASP.NET CoreStart a free 30-day trial

Data Binding Overview

Updated on Oct 28, 2025

The Telerik UI for ASP.NET Core TabStrip provides flexible data binding capabilities that allow you to create tabbed interfaces with dynamic content from various data sources. You can choose the appropriate binding method based on your application architecture and data requirements.

The default casing for JSON strings in ASP.NET Core is camelCase. The Telerik UI components that are data-bound depend on PascalCase formatted response from the server. If the JSON serialization isn't configured properly, the UI components will display wrong data. To find out how to configure the application to return the data in Pascal-case, refer to the JSON Serialization article.

Data Binding Approaches

The TabStrip supports the following data binding methods:

Items Binding

Define tab items declaratively within the component configuration when using:

  • Declarative tab structure with known items.
  • Static tab content that does not require external data sources.

For detailed implementation instructions, refer to the Items Binding documentation.

Model Binding

Bind the TabStrip to a local dataset by passing an arbitrary model directly within the boundaries of the component. This approach is optimal for small to medium-sized datasets that can be loaded in memory.

For detailed implementation instructions, refer to the Model Binding documentation.

Remote Data Binding

Connect the TabStrip to a remote endpoint to load the tab content asynchronously by using AJAX. This enables:

  • Dynamic loading of each tab's content.
  • Real-time content updates from external sources.
  • Improved performance through on-demand data loading.

For more information, refer to the Ajax Binding article.

Data Binding in Razor Pages

You can seamlessly integrate the TabStrip component into Razor Pages applications. All the data binding approaches described above can be configured within Razor Pages scenarios.

The component supports both HtmlHelper and TagHelper syntax, and allows you to send the anti-forgery token when connecting to remote endpoints to ensure secure data operations.

For detailed implementation instructions, refer to the Razor Pages Binding article.

Key Considerations

When selecting a data binding approach for the TabStrip, evaluate the following factors:

  • Performance—Items binding offers fastest initial rendering for static tabs, model binding provides fast rendering for server-side data, while remote binding delivers better performance with large datasets through on-demand content loading.
  • Data volume—Items binding works best for small static tab sets, model binding suits small to medium-sized server-side datasets, while large tab collections are better handled with remote binding and lazy loading.
  • Content type—Items binding is ideal for known static tab content, model binding works well with server-side collections, while remote binding supports dynamic content loading from any endpoint.
  • Security—Model and remote binding provide better control over data access and validation compared to Items binding.
  • Real-time requirements—Remote binding is essential for scenarios requiring live data updates and dynamic content refresh.

See Also