Skip to content

Commit 207e164

Browse files
Merge pull request #1396 from syncfusion-content/976311-dpd7
976311: Changed the path for preview sample
2 parents 7d820e6 + ff01ee9 commit 207e164

File tree

4,508 files changed

+7081
-1898
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

4,508 files changed

+7081
-1898
lines changed

Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/cell-range.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ The following code example shows the wrap text functionality in spreadsheet.
2626

2727
{% tabs %}
2828
{% highlight cshtml tabtitle="CSHTML" %}
29-
{% include code-snippet/excel/spreadsheet/asp-net-core/wrap-text/tagHelper %}
29+
{% include code-snippet/spreadsheet/asp-net-core/wrap-text/tagHelper %}
3030
{% endhighlight %}
3131
{% highlight c# tabtitle="WrapTextController.cs" %}
32-
{% include code-snippet/excel/spreadsheet/asp-net-core/wrap-text/wrapTextController.cs %}
32+
{% include code-snippet/spreadsheet/asp-net-core/wrap-text/wrapTextController.cs %}
3333
{% endhighlight %}
3434
{% endtabs %}
3535

@@ -65,10 +65,10 @@ The following code example shows the merge cells operation in spreadsheet.
6565

6666
{% tabs %}
6767
{% highlight cshtml tabtitle="CSHTML" %}
68-
{% include code-snippet/excel/spreadsheet/asp-net-core/merge-cells/tagHelper %}
68+
{% include code-snippet/spreadsheet/asp-net-core/merge-cells/tagHelper %}
6969
{% endhighlight %}
7070
{% highlight c# tabtitle="MergeCellController.cs" %}
71-
{% include code-snippet/excel/spreadsheet/asp-net-core/merge-cells/mergeCellController.cs %}
71+
{% include code-snippet/spreadsheet/asp-net-core/merge-cells/mergeCellController.cs %}
7272
{% endhighlight %}
7373
{% endtabs %}
7474

@@ -125,10 +125,10 @@ You can clear the highlighted invalid data by using the following ways,
125125

126126
{% tabs %}
127127
{% highlight cshtml tabtitle="CSHTML" %}
128-
{% include code-snippet/excel/spreadsheet/asp-net-core/data-validation/tagHelper %}
128+
{% include code-snippet/spreadsheet/asp-net-core/data-validation/tagHelper %}
129129
{% endhighlight %}
130130
{% highlight c# tabtitle="DataValidation.cs" %}
131-
{% include code-snippet/excel/spreadsheet/asp-net-core/data-validation/dataValidation.cs %}
131+
{% include code-snippet/spreadsheet/asp-net-core/data-validation/dataValidation.cs %}
132132
{% endhighlight %}
133133
{% endtabs %}
134134

@@ -151,10 +151,10 @@ The following code example demonstrates how to add custom data validation with a
151151

152152
{% tabs %}
153153
{% highlight cshtml tabtitle="CSHTML" %}
154-
{% include code-snippet/excel/spreadsheet/asp-net-core/data-validation-cs2/tagHelper %}
154+
{% include code-snippet/spreadsheet/asp-net-core/data-validation-cs2/tagHelper %}
155155
{% endhighlight %}
156156
{% highlight c# tabtitle="DataValidation.cs" %}
157-
{% include code-snippet/excel/spreadsheet/asp-net-core/data-validation-cs2/dataValidation.cs %}
157+
{% include code-snippet/spreadsheet/asp-net-core/data-validation-cs2/dataValidation.cs %}
158158
{% endhighlight %}
159159
{% endtabs %}
160160

@@ -232,10 +232,10 @@ In the following sample, you can enable/disable the fill option on the button cl
232232

233233
{% tabs %}
234234
{% highlight cshtml tabtitle="CSHTML" %}
235-
{% include code-snippet/excel/spreadsheet/asp-net-core/autofill/tagHelper %}
235+
{% include code-snippet/spreadsheet/asp-net-core/autofill/tagHelper %}
236236
{% endhighlight %}
237237
{% highlight c# tabtitle="AutofillController.cs" %}
238-
{% include code-snippet/excel/spreadsheet/asp-net-core/autofill/autofillController.cs %}
238+
{% include code-snippet/spreadsheet/asp-net-core/autofill/autofillController.cs %}
239239
{% endhighlight %}
240240
{% endtabs %}
241241

@@ -267,10 +267,10 @@ Clear the cell contents and formats in the Spreadsheet document by using the `cl
267267

268268
{% tabs %}
269269
{% highlight cshtml tabtitle="CSHTML" %}
270-
{% include code-snippet/excel/spreadsheet/asp-net-core/clear/tagHelper %}
270+
{% include code-snippet/spreadsheet/asp-net-core/clear/tagHelper %}
271271
{% endhighlight %}
272272
{% highlight c# tabtitle="ClearController.cs" %}
273-
{% include code-snippet/excel/spreadsheet/asp-net-core/clear/clearController.cs %}
273+
{% include code-snippet/spreadsheet/asp-net-core/clear/clearController.cs %}
274274
{% endhighlight %}
275275
{% endtabs %}
276276

Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/clipboard.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,10 @@ N> If you use the Keyboard shortcut key for cut (`Ctrl + X`) | copy (`Ctrl + C`)
6262

6363
{% tabs %}
6464
{% highlight cshtml tabtitle="CSHTML" %}
65-
{% include code-snippet/excel/spreadsheet/asp-net-core/clipboard/tagHelper %}
65+
{% include code-snippet/spreadsheet/asp-net-core/clipboard/tagHelper %}
6666
{% endhighlight %}
6767
{% highlight c# tabtitle="ClipboardController.cs" %}
68-
{% include code-snippet/excel/spreadsheet/asp-net-core/clipboard/clipboardController.cs %}
68+
{% include code-snippet/spreadsheet/asp-net-core/clipboard/clipboardController.cs %}
6969
{% endhighlight %}
7070
{% endtabs %}
7171

@@ -77,10 +77,10 @@ The following example shows, how to prevent the paste action in spreadsheet. In
7777

7878
{% tabs %}
7979
{% highlight cshtml tabtitle="CSHTML" %}
80-
{% include code-snippet/excel/spreadsheet/asp-net-core/prevent-paste/tagHelper %}
80+
{% include code-snippet/spreadsheet/asp-net-core/prevent-paste/tagHelper %}
8181
{% endhighlight %}
8282
{% highlight c# tabtitle="ClipboardController.cs" %}
83-
{% include code-snippet/excel/spreadsheet/asp-net-core/prevent-paste/clipboardController.cs %}
83+
{% include code-snippet/spreadsheet/asp-net-core/prevent-paste/clipboardController.cs %}
8484
{% endhighlight %}
8585
{% endtabs %}
8686

Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/context-menu.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,10 @@ In this demo, Custom Item is added after the Paste item in the context menu.
7171

7272
{% tabs %}
7373
{% highlight cshtml tabtitle="CSHTML" %}
74-
{% include code-snippet/excel/spreadsheet/asp-net-core/add-context-menu/tagHelper %}
74+
{% include code-snippet/spreadsheet/asp-net-core/add-context-menu/tagHelper %}
7575
{% endhighlight %}
7676
{% highlight c# tabtitle="AddContextMenu.cs" %}
77-
{% include code-snippet/excel/spreadsheet/asp-net-core/add-context-menu/addContextMenu.cs %}
77+
{% include code-snippet/spreadsheet/asp-net-core/add-context-menu/addContextMenu.cs %}
7878
{% endhighlight %}
7979
{% endtabs %}
8080

@@ -88,10 +88,10 @@ In this demo, Insert Column item has been removed from the row/column header con
8888

8989
{% tabs %}
9090
{% highlight cshtml tabtitle="CSHTML" %}
91-
{% include code-snippet/excel/spreadsheet/asp-net-core/remove-context-menu/tagHelper %}
91+
{% include code-snippet/spreadsheet/asp-net-core/remove-context-menu/tagHelper %}
9292
{% endhighlight %}
9393
{% highlight c# tabtitle="RemoveContextMenu.cs" %}
94-
{% include code-snippet/excel/spreadsheet/asp-net-core/remove-context-menu/removeContextMenu.cs %}
94+
{% include code-snippet/spreadsheet/asp-net-core/remove-context-menu/removeContextMenu.cs %}
9595
{% endhighlight %}
9696
{% endtabs %}
9797

@@ -105,10 +105,10 @@ In this demo, Rename item is disabled in the pager context menu.
105105

106106
{% tabs %}
107107
{% highlight cshtml tabtitle="CSHTML" %}
108-
{% include code-snippet/excel/spreadsheet/asp-net-core/enable-context-menu/tagHelper %}
108+
{% include code-snippet/spreadsheet/asp-net-core/enable-context-menu/tagHelper %}
109109
{% endhighlight %}
110110
{% highlight c# tabtitle="EnableContextMenu.cs" %}
111-
{% include code-snippet/excel/spreadsheet/asp-net-core/enable-context-menu/enableContextMenu.cs %}
111+
{% include code-snippet/spreadsheet/asp-net-core/enable-context-menu/enableContextMenu.cs %}
112112
{% endhighlight %}
113113
{% endtabs %}
114114

Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/data-binding.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ Refer to the following code example for local data binding.
2222

2323
{% tabs %}
2424
{% highlight cshtml tabtitle="CSHTML" %}
25-
{% include code-snippet/excel/spreadsheet/asp-net-core/local-data-binding/tagHelper %}
25+
{% include code-snippet/spreadsheet/asp-net-core/local-data-binding/tagHelper %}
2626
{% endhighlight %}
2727
{% highlight c# tabtitle="LocalDataController.cs" %}
28-
{% include code-snippet/excel/spreadsheet/asp-net-core/local-data-binding/localDataController.cs %}
28+
{% include code-snippet/spreadsheet/asp-net-core/local-data-binding/localDataController.cs %}
2929
{% endhighlight %}
3030
{% endtabs %}
3131

@@ -43,10 +43,10 @@ The following code example demonstrates how to customize the mapping of column d
4343

4444
{% tabs %}
4545
{% highlight cshtml tabtitle="CSHTML" %}
46-
{% include code-snippet/excel/spreadsheet/asp-net-core/field-mapping/tagHelper %}
46+
{% include code-snippet/spreadsheet/asp-net-core/field-mapping/tagHelper %}
4747
{% endhighlight %}
4848
{% highlight c# tabtitle="FieldMappingController.cs" %}
49-
{% include code-snippet/excel/spreadsheet/asp-net-core/field-mapping/fieldMappingController.cs %}
49+
{% include code-snippet/spreadsheet/asp-net-core/field-mapping/fieldMappingController.cs %}
5050
{% endhighlight %}
5151
{% endtabs %}
5252

@@ -59,10 +59,10 @@ Refer to the following code example for remote data binding.
5959

6060
{% tabs %}
6161
{% highlight cshtml tabtitle="CSHTML" %}
62-
{% include code-snippet/excel/spreadsheet/asp-net-core/remote-data-binding/tagHelper %}
62+
{% include code-snippet/spreadsheet/asp-net-core/remote-data-binding/tagHelper %}
6363
{% endhighlight %}
6464
{% highlight c# tabtitle="RemoteDataController.cs" %}
65-
{% include code-snippet/excel/spreadsheet/asp-net-core/remote-data-binding/remoteDataController.cs %}
65+
{% include code-snippet/spreadsheet/asp-net-core/remote-data-binding/remoteDataController.cs %}
6666
{% endhighlight %}
6767
{% endtabs %}
6868

@@ -76,10 +76,10 @@ N> By default, `DataManager` uses **ODataAdaptor** for remote data-binding.
7676

7777
{% tabs %}
7878
{% highlight cshtml tabtitle="CSHTML" %}
79-
{% include code-snippet/excel/spreadsheet/asp-net-core/odata-adaptor/tagHelper %}
79+
{% include code-snippet/spreadsheet/asp-net-core/odata-adaptor/tagHelper %}
8080
{% endhighlight %}
8181
{% highlight c# tabtitle="ODataController.cs" %}
82-
{% include code-snippet/excel/spreadsheet/asp-net-core/odata-adaptor/oDataController.cs %}
82+
{% include code-snippet/spreadsheet/asp-net-core/odata-adaptor/oDataController.cs %}
8383
{% endhighlight %}
8484
{% endtabs %}
8585

@@ -91,10 +91,10 @@ You can use WebApiAdaptor to bind spreadsheet with Web API created using OData e
9191

9292
{% tabs %}
9393
{% highlight cshtml tabtitle="CSHTML" %}
94-
{% include code-snippet/excel/spreadsheet/asp-net-core/webapi-adaptor/tagHelper %}
94+
{% include code-snippet/spreadsheet/asp-net-core/webapi-adaptor/tagHelper %}
9595
{% endhighlight %}
9696
{% highlight c# tabtitle="WebApiController.cs" %}
97-
{% include code-snippet/excel/spreadsheet/asp-net-core/webapi-adaptor/webApiController.cs %}
97+
{% include code-snippet/spreadsheet/asp-net-core/webapi-adaptor/webApiController.cs %}
9898
{% endhighlight %}
9999
{% endtabs %}
100100

@@ -108,10 +108,10 @@ Refer to the following code example for cell data binding.
108108

109109
{% tabs %}
110110
{% highlight cshtml tabtitle="CSHTML" %}
111-
{% include code-snippet/excel/spreadsheet/asp-net-core/cell-data-binding/tagHelper %}
111+
{% include code-snippet/spreadsheet/asp-net-core/cell-data-binding/tagHelper %}
112112
{% endhighlight %}
113113
{% highlight c# tabtitle="CellDataController.cs" %}
114-
{% include code-snippet/excel/spreadsheet/asp-net-core/cell-data-binding/cellDataController.cs %}
114+
{% include code-snippet/spreadsheet/asp-net-core/cell-data-binding/cellDataController.cs %}
115115
{% endhighlight %}
116116
{% endtabs %}
117117

@@ -137,10 +137,10 @@ N> For `add` action, the value for all the fields will be `null` in the data. In
137137

138138
{% tabs %}
139139
{% highlight cshtml tabtitle="CSHTML" %}
140-
{% include code-snippet/excel/spreadsheet/asp-net-core/dynamic-data-binding/tagHelper %}
140+
{% include code-snippet/spreadsheet/asp-net-core/dynamic-data-binding/tagHelper %}
141141
{% endhighlight %}
142142
{% highlight c# tabtitle="DynamicDataController.cs" %}
143-
{% include code-snippet/excel/spreadsheet/asp-net-core/dynamic-data-binding/dynamicDataController.cs %}
143+
{% include code-snippet/spreadsheet/asp-net-core/dynamic-data-binding/dynamicDataController.cs %}
144144
{% endhighlight %}
145145
{% endtabs %}
146146

@@ -154,10 +154,10 @@ The following code example demonstrates how to dynamically update data using the
154154

155155
{% tabs %}
156156
{% highlight cshtml tabtitle="CSHTML" %}
157-
{% include code-snippet/excel/spreadsheet/asp-net-core/dynamic-data-binding-cs2/tagHelper %}
157+
{% include code-snippet/spreadsheet/asp-net-core/dynamic-data-binding-cs2/tagHelper %}
158158
{% endhighlight %}
159159
{% highlight c# tabtitle="UpdateRangeController.cs" %}
160-
{% include code-snippet/excel/spreadsheet/asp-net-core/dynamic-data-binding-cs2/updateRangeController.cs %}
160+
{% include code-snippet/spreadsheet/asp-net-core/dynamic-data-binding-cs2/updateRangeController.cs %}
161161
{% endhighlight %}
162162
{% endtabs %}
163163

Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/editing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ The following sample shows how to prevent the editing and cell save. Here `E` co
4141

4242
{% tabs %}
4343
{% highlight cshtml tabtitle="CSHTML" %}
44-
{% include code-snippet/excel/spreadsheet/asp-net-core/editing/tagHelper %}
44+
{% include code-snippet/spreadsheet/asp-net-core/editing/tagHelper %}
4545
{% endhighlight %}
4646
{% highlight c# tabtitle="EditingController.cs" %}
47-
{% include code-snippet/excel/spreadsheet/asp-net-core/editing/editingController.cs %}
47+
{% include code-snippet/spreadsheet/asp-net-core/editing/editingController.cs %}
4848
{% endhighlight %}
4949
{% endtabs %}
5050

Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/filter.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ The following code example shows `filter` functionality in the Spreadsheet contr
3838

3939
{% tabs %}
4040
{% highlight cshtml tabtitle="CSHTML" %}
41-
{% include code-snippet/excel/spreadsheet/asp-net-core/filter/tagHelper %}
41+
{% include code-snippet/spreadsheet/asp-net-core/filter/tagHelper %}
4242
{% endhighlight %}
4343
{% highlight c# tabtitle="FilterController.cs" %}
44-
{% include code-snippet/excel/spreadsheet/asp-net-core/filter/filterController.cs %}
44+
{% include code-snippet/spreadsheet/asp-net-core/filter/filterController.cs %}
4545
{% endhighlight %}
4646
{% endtabs %}
4747

@@ -87,10 +87,10 @@ The following code example shows how to get the filtered rows.
8787

8888
{% tabs %}
8989
{% highlight cshtml tabtitle="CSHTML" %}
90-
{% include code-snippet/excel/spreadsheet/asp-net-core/filter-cs1/tagHelper %}
90+
{% include code-snippet/spreadsheet/asp-net-core/filter-cs1/tagHelper %}
9191
{% endhighlight %}
9292
{% highlight c# tabtitle="InsertSheetController.cs" %}
93-
{% include code-snippet/excel/spreadsheet/asp-net-core/filter-cs1/filterController.cs %}
93+
{% include code-snippet/spreadsheet/asp-net-core/filter-cs1/filterController.cs %}
9494
{% endhighlight %}
9595
{% endtabs %}
9696

Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/formatting.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -91,10 +91,10 @@ The following code example shows the number formatting in cell data.
9191

9292
{% tabs %}
9393
{% highlight cshtml tabtitle="CSHTML" %}
94-
{% include code-snippet/excel/spreadsheet/asp-net-core/number-format/tagHelper %}
94+
{% include code-snippet/spreadsheet/asp-net-core/number-format/tagHelper %}
9595
{% endhighlight %}
9696
{% highlight c# tabtitle="NumberFormatController.cs" %}
97-
{% include code-snippet/excel/spreadsheet/asp-net-core/number-format/numberFormatController.cs %}
97+
{% include code-snippet/spreadsheet/asp-net-core/number-format/numberFormatController.cs %}
9898
{% endhighlight %}
9999
{% endtabs %}
100100

@@ -146,10 +146,10 @@ The following code example demonstrates how to configure culture-based formats f
146146

147147
{% tabs %}
148148
{% highlight cshtml tabtitle="CSHTML" %}
149-
{% include code-snippet/excel/spreadsheet/asp-net-core/globalization-cs1/tagHelper %}
149+
{% include code-snippet/spreadsheet/asp-net-core/globalization-cs1/tagHelper %}
150150
{% endhighlight %}
151151
{% highlight c# tabtitle="CultureController.cs" %}
152-
{% include code-snippet/excel/spreadsheet/asp-net-core/globalization-cs1/cultureController.cs %}
152+
{% include code-snippet/spreadsheet/asp-net-core/globalization-cs1/cultureController.cs %}
153153
{% endhighlight %}
154154
{% endtabs %}
155155

@@ -214,10 +214,10 @@ The following code example shows the style formatting in text and cells of the s
214214

215215
{% tabs %}
216216
{% highlight cshtml tabtitle="CSHTML" %}
217-
{% include code-snippet/excel/spreadsheet/asp-net-core/cell-format/tagHelper %}
217+
{% include code-snippet/spreadsheet/asp-net-core/cell-format/tagHelper %}
218218
{% endhighlight %}
219219
{% highlight c# tabtitle="CellFormatController.cs" %}
220-
{% include code-snippet/excel/spreadsheet/asp-net-core/cell-format/cellFormatController.cs %}
220+
{% include code-snippet/spreadsheet/asp-net-core/cell-format/cellFormatController.cs %}
221221
{% endhighlight %}
222222
{% endtabs %}
223223

@@ -311,10 +311,10 @@ You can clear the defined rules by using one of the following ways,
311311

312312
{% tabs %}
313313
{% highlight cshtml tabtitle="CSHTML" %}
314-
{% include code-snippet/excel/spreadsheet/asp-net-core/conditional-formatting/tagHelper %}
314+
{% include code-snippet/spreadsheet/asp-net-core/conditional-formatting/tagHelper %}
315315
{% endhighlight %}
316316
{% highlight c# tabtitle="ConditionalFormattingController.cs" %}
317-
{% include code-snippet/excel/spreadsheet/asp-net-core/conditional-formatting/conditionalFormattingController.cs %}
317+
{% include code-snippet/spreadsheet/asp-net-core/conditional-formatting/conditionalFormattingController.cs %}
318318
{% endhighlight %}
319319
{% endtabs %}
320320

0 commit comments

Comments
 (0)