Skip to content

Commit 5ee614d

Browse files
committed
modified the md file
1 parent a6ef65f commit 5ee614d

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

ej2-asp-core-mvc/grid/EJ2_ASP.NETCORE/connecting-to-adaptors/odatav4-adaptor.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ builder.Services.AddControllers().AddOData(
283283
.Filter()
284284
.AddRouteComponents("odata", modelBuilder.GetEdmModel()));
285285
{% endhighlight %}
286-
{% highlight html tabtitle="Index.cshtml" %}
286+
{% highlight cshtml tabtitle="Index.cshtml" %}
287287

288288
<ejs-grid id="Grid" height="280" toolbar="@(new List<string>() { "Search"})">
289289
<e-data-manager url="https://localhost:xxxx/odata/Orders" adaptor="ODataV4Adaptor"></e-data-manager>
@@ -326,7 +326,7 @@ builder.Services.AddControllers().AddOData(
326326
.Filter()
327327
.AddRouteComponents("odata", modelBuilder.GetEdmModel()));
328328
{% endhighlight %}
329-
{% highlight html tabtitle="Index.cshtml" %}
329+
{% highlight cshtml tabtitle="Index.cshtml" %}
330330

331331
<ejs-grid id="Grid" height="280" allowFiltering="true">
332332
<e-data-manager url="https://localhost:xxxx/odata/Orders" adaptor="ODataV4Adaptor"></e-data-manager>
@@ -373,7 +373,7 @@ builder.Services.AddControllers().AddOData(
373373
.AddRouteComponents("odata", modelBuilder.GetEdmModel()));
374374

375375
{% endhighlight %}
376-
{% highlight html tabtitle="Index.cshtml" %}
376+
{% highlight cshtml tabtitle="Index.cshtml" %}
377377

378378
<ejs-grid id="Grid" height="280" allowSorting="true">
379379
<e-data-manager url="https://localhost:xxxx/odata/Orders" adaptor="ODataV4Adaptor"></e-data-manager>
@@ -428,7 +428,7 @@ builder.Services.AddControllers().AddOData(
428428
modelBuilder.GetEdmModel()));
429429

430430
{% endhighlight %}
431-
{% highlight html tabtitle="Index.cshtml" %}
431+
{% highlight cshtml tabtitle="Index.cshtml" %}
432432

433433
<ejs-grid id="Grid" height="280" allowPaging="true">
434434
<e-data-manager url="https://localhost:xxxx/odata/Orders" adaptor="ODataV4Adaptor"></e-data-manager>
@@ -453,7 +453,7 @@ To manage CRUD (Create, Read, Update, Delete) operations using the ODataV4Adapto
453453
To enable CRUD operations in the Syncfusion ASP.NET Core Grid, follow the below steps:
454454

455455
{% tabs %}
456-
{% highlight html tabtitle="Index.cshtml" %}
456+
{% highlight cshtml tabtitle="Index.cshtml" %}
457457

458458
<ejs-grid id="Grid" height="280" toolbar="@(new List<string>() { "Add", "Edit", "Delete", "Update", "Cancel", "Search"})">
459459
<e-grid-editSettings allowAdding="true" allowDeleting="true" allowEditing="true" mode="Normal"></e-grid-editSettings>
@@ -574,7 +574,7 @@ To work with custom URLs for CRUD operations in the Syncfusion Grid, you can use
574574
The following code example describes the above behavior.
575575

576576
{% tabs %}
577-
{% highlight html tabtitle="Index.cshtml" %}
577+
{% highlight cshtml tabtitle="Index.cshtml" %}
578578

579579
<ejs-grid id="Grid" height="280" toolbar="@(new List<string>() { "Add", "Edit", "Delete", "Update", "Cancel", "Search"})">
580580
<e-grid-editSettings allowAdding="true" allowDeleting="true" allowEditing="true" mode="Normal"></e-grid-editSettings>
@@ -598,7 +598,7 @@ The following code example describes the above behavior.
598598
For batch editing, you can specify a custom batch URL as follows:
599599

600600
{% tabs %}
601-
{% highlight html tabtitle="Index.cshtml" %}
601+
{% highlight cshtml tabtitle="Index.cshtml" %}
602602

603603
<ejs-grid id="Grid" height="280" toolbar="@(new List<string>() { "Add", "Edit", "Delete", "Update", "Cancel", "Search"})">
604604
<e-grid-editSettings allowAdding="true" allowDeleting="true" allowEditing="true" mode="Normal"></e-grid-editSettings>

0 commit comments

Comments
 (0)