Skip to content

Commit 2dd9716

Browse files
951563: correction
1 parent 02ed9ed commit 2dd9716

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

ej2-asp-core-mvc/grid/EJ2_ASP.MVC/Connecting-to-adaptors/web-method-adaptor.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ Run the project in Visual Studio, and the Syncfusion ASP.NET MVC Grid will succe
296296
}
297297
```
298298

299-
## Handling Searching Operation
299+
## Handling searching operation
300300

301301
To enable search functionality, ensure that your API endpoint supports custom searching criteria. Implement the searching logic on the server-side using the `PerformSearching` method from the `QueryableOperation` class. This allows the custom data source to undergo searching based on the criteria specified in the incoming `DataManagerRequest` object.
302302

@@ -346,7 +346,7 @@ public class DataManager
346346
{% endhighlight %}
347347
{% endtabs %}
348348

349-
## Handling Filtering Operation
349+
## Handling filtering operation
350350

351351
To handle filtering operation, configure your API endpoint to support filter criteria. Implement the filtering logic on the server-side using the `PerformFiltering` method from the `QueryableOperation` class. This allows the custom data source to undergo filtering based on the criteria specified in the incoming `DataManagerRequest` object.
352352

@@ -407,7 +407,7 @@ public class DataManager
407407
{% endhighlight %}
408408
{% endtabs %}
409409

410-
## Handling Sorting Operation
410+
## Handling sorting operation
411411

412412
To handle sorting operation, configure your API to support custom sorting criteria. Implement the sorting logic on the server-side using the `PerformSorting` method from the `QueryableOperation` class. This allows the custom data source to undergo sorting based on the criteria specified in the incoming `DataManagerRequest` object.
413413

@@ -463,7 +463,7 @@ public class DataManager
463463
{% endhighlight %}
464464
{% endtabs %}
465465

466-
## Handling Paging Operation
466+
## Handling paging operation
467467

468468
To handle paging operation, configure your API endpoint to support custom paging criteria. Implement the paging logic on the server-side using the `PerformTake` and `PerformSkip` method from the `QueryableOperation` class. This allows the custom data source to undergo paging based on the custom paging criteria specified in the incoming `DataManagerRequest` object.
469469

ej2-asp-core-mvc/grid/EJ2_ASP.MVC/connecting-to-adaptors/url-adaptor.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ Run the project in Visual Studio, and the Syncfusion ASP.NET MVC Grid will succe
190190
> * In an API service project, add `Syncfusion.EJ2.MVC5` by opening the NuGet package manager in Visual Studio (ToolsNuGet Package ManagerManage NuGet Packages for Solution), search and install it.
191191
> * To access `DataManagerRequest`, import [Syncfusion.EJ2.Base](https://www.npmjs.com/package/@syncfusion/ej2-base) in `GridController.cs` file.
192192
193-
## Handling Searching Operation
193+
## Handling searching operation
194194

195195
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.
196196

@@ -233,7 +233,7 @@ To enable search functionality, ensure that your API endpoint supports custom se
233233
{% endhighlight %}
234234
{% endtabs %}
235235

236-
## Handling Filtering Operation
236+
## Handling filtering operation
237237

238238
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.
239239

@@ -278,7 +278,7 @@ To handle filtering operation, configure your API endpoint to support filter cri
278278
{% endhighlight %}
279279
{% endtabs %}
280280

281-
## Handling Sorting Operation
281+
## Handling sorting operation
282282

283283
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.
284284

@@ -321,7 +321,7 @@ public ActionResult UrlDatasource(DataManagerRequest DataManagerRequest)
321321
{% endhighlight %}
322322
{% endtabs %}
323323

324-
## Handling Paging Operation
324+
## Handling paging operation
325325

326326
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.
327327

@@ -369,7 +369,7 @@ To handle paging operation, ensure that your API endpoint supports custom paging
369369

370370
## Handling CRUD Operations
371371

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.
373373

374374
**CRUD Operations Mapping**
375375

@@ -472,7 +472,7 @@ public ActionResult Update(Orders value)
472472
}
473473
```
474474

475-
**Delete Operation**
475+
**Delete Operation:**
476476

477477
To delete existing records, use the `RemoveUrl` property to specify the controller action mapping URL for the delete operation.
478478

ej2-asp-core-mvc/grid/EJ2_ASP.MVC/connecting-to-adaptors/web-method-adaptor.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ Run the project in Visual Studio, and the Syncfusion ASP.NET MVC Grid will succe
296296
}
297297
```
298298

299-
## Handling Searching Operation
299+
## Handling searching operation
300300

301301
To enable search functionality, ensure that your API endpoint supports custom searching criteria. Implement the searching logic on the server-side using the `PerformSearching` method from the `QueryableOperation` class. This allows the custom data source to undergo searching based on the criteria specified in the incoming `DataManagerRequest` object.
302302

@@ -346,7 +346,7 @@ public class DataManager
346346
{% endhighlight %}
347347
{% endtabs %}
348348

349-
## Handling Filtering Operation
349+
## Handling filtering operation
350350

351351
To handle filtering operation, configure your API endpoint to support filter criteria. Implement the filtering logic on the server-side using the `PerformFiltering` method from the `QueryableOperation` class. This allows the custom data source to undergo filtering based on the criteria specified in the incoming `DataManagerRequest` object.
352352

@@ -407,7 +407,7 @@ public class DataManager
407407
{% endhighlight %}
408408
{% endtabs %}
409409

410-
## Handling Sorting Operation
410+
## Handling sorting operation
411411

412412
To handle sorting operation, configure your API to support custom sorting criteria. Implement the sorting logic on the server-side using the `PerformSorting` method from the `QueryableOperation` class. This allows the custom data source to undergo sorting based on the criteria specified in the incoming `DataManagerRequest` object.
413413

@@ -463,7 +463,7 @@ public class DataManager
463463
{% endhighlight %}
464464
{% endtabs %}
465465

466-
## Handling Paging Operation
466+
## Handling paging operation
467467

468468
To handle paging operation, configure your API endpoint to support custom paging criteria. Implement the paging logic on the server-side using the `PerformTake` and `PerformSkip` method from the `QueryableOperation` class. This allows the custom data source to undergo paging based on the custom paging criteria specified in the incoming `DataManagerRequest` object.
469469

0 commit comments

Comments
 (0)