<kendo:dataSource-transport-batch>

The object can contain all the available jQuery.ajax options.

Example

<kendo:dataSource-transport>
    <kendo:dataSource-transport-batch></kendo:dataSource-transport-batch>
</kendo:dataSource-transport>

Configuration Attributes

url java.lang.String

The odata-v4 batch endpoint to which the request is sent.If set to a function, the data source will invoke it and use the result as the URL.

Example

<kendo:dataSource-transport-batch url="url">
</kendo:dataSource-transport-batch>

Event Attributes

url String

The odata-v4 batch endpoint to which the request is sent.If set to a function, the data source will invoke it and use the result as the URL.

Example

<kendo:dataSource-transport-batch url="handle_url">
</kendo:dataSource-transport-batch>
<script>
    function handle_url(e) {
        // Code to handle the url event.
    }
</script>

Event Tags

kendo:dataSource-transport-batch-url

The odata-v4 batch endpoint to which the request is sent.If set to a function, the data source will invoke it and use the result as the URL.

Example

<kendo:dataSource-transport-batch>
    <kendo:dataSource-transport-batch-url>
        <script>
            function(e) {
                // Code to handle the url event.
            }
        </script>
    </kendo:dataSource-transport-batch-url>
</kendo:dataSource-transport-batch>
In this article
Not finding the help you need?