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

DataSourceBuilder

Methods

Ajax()

Use it to configure Ajax binding.

Example


            .DataSource(dataSource => dataSource
                    .Ajax()
            )

Server()

Use it to configure Server binding.

Example


            .DataSource(dataSource => dataSource
                    .Server()
            )

WebApi()

Use it to configure WebApi binding.

Example


            .DataSource(dataSource => dataSource
                    .WebApi()
            )

Custom()

Use it to configure Custom binding.

Example


            .DataSource(dataSource => dataSource
                    .Custom()
            )

SignalR()

Use it to configure SignalR binding.

Example


            .DataSource(dataSource => dataSource
                    .SignalR()
            )

In this article
Not finding the help you need?