Skip to content

Commit 93137fc

Browse files
Update postgresql-server.md
1 parent 00370d3 commit 93137fc

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

ej2-asp-core-mvc/grid/EJ2_ASP.MVC/connecting-to-database/postgresql-server.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ Now, add the Syncfusion ASP.NET MVC Grid tag helper in `~/Views/Home/Index.cshtm
229229
{% tabs %}
230230
{% highlight cshtml tabtitle="Index.cshtml" %}
231231

232-
// Replace xxxx with your actual port number
232+
// Replace xxxx with your actual port number.
233233
@Html.EJS().Grid("Grid").DataSource(ds => ds.Url("https://localhost:xxxx/api/Grid").Adaptor("UrlAdaptor")).Columns(col =>
234234
{
235235
col.Field("OrderID").HeaderText("Order ID").Width("100").TextAlign(Syncfusion.EJ2.Grids.TextAlign.Right).Add();
@@ -560,7 +560,7 @@ public object Post(DataManagerRequest DataManagerRequest)
560560

561561
### Handling CRUD operations
562562

563-
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.
563+
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` and `BatchUrl`. These properties enable the Grid to communicate with the data service for every Grid action, facilitating server-side operations.
564564

565565
**CRUD Operations Mapping**
566566

@@ -569,10 +569,9 @@ The following properties enable the Grid to interact with API endpoints for diff
569569
1. **InsertUrl**: Specifies the URL for inserting new data.
570570
2. **RemoveUrl**: Specifies the URL for removing existing data.
571571
3. **UpdateUrl**: Specifies the URL for updating existing data.
572-
4. **CrudUrl**: Specifies a single URL for all CRUD operations.
573-
5. **BatchUrl**: Specifies the URL for batch editing.
572+
4. **BatchUrl**: Specifies the URL for batch editing.
574573

575-
To enable editing in ASP.NET MVC Grid, refer to the editing [Documentation](https://ej2.syncfusion.com/aspnetmvc/documentation/grid/editing/edit). In the below example, the inline edit `Mode` is enabled and [Toolbar](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.Grids.Grid.html#Syncfusion_EJ2_Grids_Grid_Toolbar) property is configured to display toolbar items for editing purposes.
574+
To enable editing in ASP.NET MVC Grid, refer to the editing [documentation](https://ej2.syncfusion.com/aspnetmvc/documentation/grid/editing/edit). In the below example, the inline edit `Mode` is enabled and [Toolbar](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.Grids.Grid.html#Syncfusion_EJ2_Grids_Grid_Toolbar) property is configured to display toolbar items for editing purposes.
576575
577576
{% tabs %}
578577
{% highlight cshtml tabtitle="Index.cshtml" %}
@@ -1359,7 +1358,7 @@ public object Post(DataManagerRequest DataManagerRequest)
13591358

13601359
### Handling CRUD Operations
13611360

1362-
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.
1361+
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`, and `BatchUrl`. These properties enable the Grid to communicate with the data service for every Grid action, facilitating server-side operations.
13631362

13641363
**CRUD Operations Mapping**
13651364

@@ -1368,8 +1367,7 @@ The following properties enable the Grid to interact with API endpoints for diff
13681367
1. **InsertUrl**: Specifies the URL for inserting new data.
13691368
2. **RemoveUrl**: Specifies the URL for removing existing data.
13701369
3. **UpdateUrl**: Specifies the URL for updating existing data.
1371-
4. **CrudUrl**: Specifies a single URL for all CRUD operations.
1372-
5. **BatchUrl**: Specifies the URL for batch editing.
1370+
4. **BatchUrl**: Specifies the URL for batch editing.
13731371

13741372
To enable editing in ASP.NET MVC Grid, refer to the editing [Documentation](https://ej2.syncfusion.com/aspnetmvc/documentation/grid/editing/edit). In the below example, the inline edit `Mode` is enabled and [Toolbar](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.Grids.Grid.html#Syncfusion_EJ2_Grids_Grid_Toolbar) property is configured to display toolbar items for editing purposes.
13751373

0 commit comments

Comments
 (0)