@@ -283,7 +283,7 @@ builder.Services.AddControllers().AddOData(
283
283
.Filter()
284
284
.AddRouteComponents("odata", modelBuilder.GetEdmModel()));
285
285
{% endhighlight %}
286
- {% highlight html tabtitle="Index.cshtml" %}
286
+ {% highlight cshtml tabtitle="Index.cshtml" %}
287
287
288
288
<ejs-grid id="Grid" height="280" toolbar="@(new List<string >() { "Search"})">
289
289
<e-data-manager url =" https://localhost:xxxx/odata/Orders " adaptor =" ODataV4Adaptor " ></e-data-manager >
@@ -326,7 +326,7 @@ builder.Services.AddControllers().AddOData(
326
326
.Filter()
327
327
.AddRouteComponents("odata", modelBuilder.GetEdmModel()));
328
328
{% endhighlight %}
329
- {% highlight html tabtitle="Index.cshtml" %}
329
+ {% highlight cshtml tabtitle="Index.cshtml" %}
330
330
331
331
<ejs-grid id =" Grid " height =" 280 " allowFiltering =" true " >
332
332
<e-data-manager url="https://localhost:xxxx/odata/Orders" adaptor="ODataV4Adaptor"></e-data-manager>
@@ -373,7 +373,7 @@ builder.Services.AddControllers().AddOData(
373
373
.AddRouteComponents("odata", modelBuilder.GetEdmModel()));
374
374
375
375
{% endhighlight %}
376
- {% highlight html tabtitle="Index.cshtml" %}
376
+ {% highlight cshtml tabtitle="Index.cshtml" %}
377
377
378
378
<ejs-grid id =" Grid " height =" 280 " allowSorting =" true " >
379
379
<e-data-manager url="https://localhost:xxxx/odata/Orders" adaptor="ODataV4Adaptor"></e-data-manager>
@@ -428,7 +428,7 @@ builder.Services.AddControllers().AddOData(
428
428
modelBuilder.GetEdmModel()));
429
429
430
430
{% endhighlight %}
431
- {% highlight html tabtitle="Index.cshtml" %}
431
+ {% highlight cshtml tabtitle="Index.cshtml" %}
432
432
433
433
<ejs-grid id =" Grid " height =" 280 " allowPaging =" true " >
434
434
<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
453
453
To enable CRUD operations in the Syncfusion ASP.NET Core Grid, follow the below steps:
454
454
455
455
{% tabs %}
456
- {% highlight html tabtitle="Index.cshtml" %}
456
+ {% highlight cshtml tabtitle="Index.cshtml" %}
457
457
458
458
<ejs-grid id="Grid" height="280" toolbar="@(new List<string >() { "Add", "Edit", "Delete", "Update", "Cancel", "Search"})">
459
459
<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
574
574
The following code example describes the above behavior.
575
575
576
576
{% tabs %}
577
- {% highlight html tabtitle="Index.cshtml" %}
577
+ {% highlight cshtml tabtitle="Index.cshtml" %}
578
578
579
579
<ejs-grid id="Grid" height="280" toolbar="@(new List<string >() { "Add", "Edit", "Delete", "Update", "Cancel", "Search"})">
580
580
<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.
598
598
For batch editing, you can specify a custom batch URL as follows:
599
599
600
600
{% tabs %}
601
- {% highlight html tabtitle="Index.cshtml" %}
601
+ {% highlight cshtml tabtitle="Index.cshtml" %}
602
602
603
603
<ejs-grid id="Grid" height="280" toolbar="@(new List<string >() { "Add", "Edit", "Delete", "Update", "Cancel", "Search"})">
604
604
<e-grid-editSettings allowAdding =" true " allowDeleting =" true " allowEditing =" true " mode =" Normal " ></e-grid-editSettings >
0 commit comments