@@ -190,7 +190,7 @@ Run the project in Visual Studio, and the Syncfusion ASP.NET MVC Grid will succe
190
190
> * In an API service project , add `Syncfusion .EJ2 .MVC5 ` by opening the NuGet package manager in Visual Studio (Tools → NuGet Package Manager → Manage NuGet Packages for Solution ), search and install it .
191
191
> * To access `DataManagerRequest `, import [Syncfusion .EJ2 .Base ](https :// www.npmjs.com/package/@syncfusion/ej2-base) in `GridController.cs` file.
192
192
193
- ## Handling Searching Operation
193
+ ## Handling searching operation
194
194
195
195
To enable search functionality , ensure that your API endpoint supports custom searching criteria . Implement the searching logic on the server - side using the `PerformSearching `. This allows the custom data source to undergo searching based on the criteria specified in the incoming `DataManagerRequest ` object .
196
196
@@ -233,7 +233,7 @@ To enable search functionality, ensure that your API endpoint supports custom se
233
233
{% endhighlight % }
234
234
{% endtabs % }
235
235
236
- ## Handling Filtering Operation
236
+ ## Handling filtering operation
237
237
238
238
To handle filtering operation , configure your API endpoint to support filter criteria . Implement the filtering logic on the server - side using the `PerformFiltering `. This allows the custom data source to undergo filtering based on the criteria specified in the incoming `DataManagerRequest ` object .
239
239
@@ -278,7 +278,7 @@ To handle filtering operation, configure your API endpoint to support filter cri
278
278
{% endhighlight % }
279
279
{% endtabs % }
280
280
281
- ## Handling Sorting Operation
281
+ ## Handling sorting operation
282
282
283
283
To handle sorting operation , configure your API to support custom sorting criteria . Implement the sorting logic on the server - side using the `PerformSorting `. This allows the custom data source to undergo sorting based on the criteria specified in the incoming `DataManagerRequest ` object .
284
284
@@ -321,7 +321,7 @@ public ActionResult UrlDatasource(DataManagerRequest DataManagerRequest)
321
321
{% endhighlight % }
322
322
{% endtabs % }
323
323
324
- ## Handling Paging Operation
324
+ ## Handling paging operation
325
325
326
326
To handle paging operation , ensure that your API endpoint supports custom paging criteria . Implement the paging logic on the server - side using the `PerformTake ` and `PerformSkip `. This allows the custom data source to undergo paging based on the criteria specified in the incoming `DataManagerRequest ` object .
327
327
@@ -369,7 +369,7 @@ To handle paging operation, ensure that your API endpoint supports custom paging
369
369
370
370
## Handling CRUD Operations
371
371
372
- The Syncfusion ASP .NET MVC Grid seamlessly integrates CRUD (Create , Read , Update , Delete ) operations with server - side controller actions through specific properties : `InsertUrl `, `RemoveUrl `, `UpdateUrl `,`CrudUrl `, and `BatchUrl `. These properties enable the Grid to communicate with the data service for every Grid action , facilitating server - side operations .
372
+ The Syncfusion ASP .NET MVC Grid seamlessly integrates CRUD (Create , Read , Update , and Delete ) operations with server - side controller actions through specific properties : `InsertUrl `, `RemoveUrl `, `UpdateUrl `,`CrudUrl `, and `BatchUrl `. These properties enable the Grid to communicate with the data service for every Grid action , facilitating server - side operations .
373
373
374
374
** CRUD Operations Mapping **
375
375
@@ -472,7 +472,7 @@ public ActionResult Update(Orders value)
472
472
}
473
473
```
474
474
475
- ** Delete Operation **
475
+ ** Delete Operation : **
476
476
477
477
To delete existing records , use the `RemoveUrl ` property to specify the controller action mapping URL for the delete operation .
478
478
0 commit comments