You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: components/grid/manual-operations.md
+85-2
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,15 @@ The comments in the code provide explanations on what is done and why.
24
24
25
25
>tip You can also use a synchronous version of the event. Its signature is `void ReadItems(GridReadEventArgs args)`.
26
26
27
-
>caption Custom paging with a remote service
27
+
Examples:
28
+
29
+
30
+
*[Custom paging with a remote service](#custom-paging-with-a-remote-service)
31
+
*[If you have all the data at once, the Telerik .ToDataSourceResult(request) extension method can manage the operations for you](#if-you-have-all-the-data-at-once-the-telerik-todatasourceresultrequest-extension-method-can-manage-the-operations-for-you)
32
+
*[Extract information from the DataSourceRequest object to use in your own API](#extract-information-from-the-datasourcerequest-object-to-use-in-your-own-api)
Custom paging. There is a deliberate delay in the data source operations in this example to mimic real life delays and to showcase the async nature of the calls.
@@ -110,7 +118,7 @@ Custom paging. There is a deliberate delay in the data source operations in this
110
118
}
111
119
````
112
120
113
-
>caption If you have all the data at once, the Telerik .ToDataSourceResult(request) extension method can manage the operations for you
121
+
###If you have all the data at once, the Telerik .ToDataSourceResult(request) extension method can manage the operations for you
114
122
115
123
````CSHTML
116
124
Using Telerik DataSource extension methods to manipulate all the data into paged chunks and also perform other operations like filtering, sorting, etc. There is a deliberate delay in the data source operations in this example to mimic real life delays and to showcase the async nature of the calls.
@@ -193,6 +201,81 @@ Using Telerik DataSource extension methods to manipulate all the data into paged
193
201
````
194
202
195
203
204
+
### Extract information from the DataSourceRequest object to use in your own API
0 commit comments