Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
28 changes: 14 additions & 14 deletions Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/cell-range.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
---
layout: post
title: Cell Range in EJ2 ASP.NET CORE Syncfusion Spreadsheet Component
title: Cell Range in EJ2 ASP.NET Core Syncfusion Spreadsheet Component
description: Learn here all about Cell Range in Syncfusion EJ2 ASP.NET CORE Spreadsheet component of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Cell Range
documentation: ug
---


# Cell Range in Spreadsheet control
# Cell Range in ASP.NET Core Spreadsheet control

A group of cells in a sheet is known as cell range.

Expand All @@ -26,10 +26,10 @@ The following code example shows the wrap text functionality in spreadsheet.

{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
{% include code-snippet/excel/spreadsheet/asp-net-core/wrap-text/tagHelper %}
{% include code-snippet/spreadsheet/asp-net-core/wrap-text/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="WrapTextController.cs" %}
{% include code-snippet/excel/spreadsheet/asp-net-core/wrap-text/wrapTextController.cs %}
{% include code-snippet/spreadsheet/asp-net-core/wrap-text/wrapTextController.cs %}
{% endhighlight %}
{% endtabs %}

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

{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
{% include code-snippet/excel/spreadsheet/asp-net-core/merge-cells/tagHelper %}
{% include code-snippet/spreadsheet/asp-net-core/merge-cells/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="MergeCellController.cs" %}
{% include code-snippet/excel/spreadsheet/asp-net-core/merge-cells/mergeCellController.cs %}
{% include code-snippet/spreadsheet/asp-net-core/merge-cells/mergeCellController.cs %}
{% endhighlight %}
{% endtabs %}

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

{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
{% include code-snippet/excel/spreadsheet/asp-net-core/data-validation/tagHelper %}
{% include code-snippet/spreadsheet/asp-net-core/data-validation/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="DataValidation.cs" %}
{% include code-snippet/excel/spreadsheet/asp-net-core/data-validation/dataValidation.cs %}
{% include code-snippet/spreadsheet/asp-net-core/data-validation/dataValidation.cs %}
{% endhighlight %}
{% endtabs %}

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

{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
{% include code-snippet/excel/spreadsheet/asp-net-core/data-validation-cs2/tagHelper %}
{% include code-snippet/spreadsheet/asp-net-core/data-validation-cs2/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="DataValidation.cs" %}
{% include code-snippet/excel/spreadsheet/asp-net-core/data-validation-cs2/dataValidation.cs %}
{% include code-snippet/spreadsheet/asp-net-core/data-validation-cs2/dataValidation.cs %}
{% endhighlight %}
{% endtabs %}

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

{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
{% include code-snippet/excel/spreadsheet/asp-net-core/autofill/tagHelper %}
{% include code-snippet/spreadsheet/asp-net-core/autofill/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="AutofillController.cs" %}
{% include code-snippet/excel/spreadsheet/asp-net-core/autofill/autofillController.cs %}
{% include code-snippet/spreadsheet/asp-net-core/autofill/autofillController.cs %}
{% endhighlight %}
{% endtabs %}

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

{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
{% include code-snippet/excel/spreadsheet/asp-net-core/clear/tagHelper %}
{% include code-snippet/spreadsheet/asp-net-core/clear/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="ClearController.cs" %}
{% include code-snippet/excel/spreadsheet/asp-net-core/clear/clearController.cs %}
{% include code-snippet/spreadsheet/asp-net-core/clear/clearController.cs %}
{% endhighlight %}
{% endtabs %}

Expand Down
12 changes: 6 additions & 6 deletions Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/clipboard.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
---
layout: post
title: Clipboard in EJ2 ASP.NET CORE Syncfusion Spreadsheet Component
title: Clipboard in EJ2 ASP.NET Core Syncfusion Spreadsheet Component
description: Learn here all about Clipboard in Syncfusion EJ2 ASP.NET CORE Spreadsheet component of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Clipboard
documentation: ug
---


# Clipboard in Spreadsheet control
# Clipboard in ASP.NET Core Spreadsheet control

The Spreadsheet provides support for the clipboard operations (cut, copy, and paste). Clipboard operations can be enabled or disabled by setting the [`enableClipboard`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Spreadsheet.Spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_EnableClipboard) property in Spreadsheet.

Expand Down Expand Up @@ -62,10 +62,10 @@ N> If you use the Keyboard shortcut key for cut (`Ctrl + X`) | copy (`Ctrl + C`)

{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
{% include code-snippet/excel/spreadsheet/asp-net-core/clipboard/tagHelper %}
{% include code-snippet/spreadsheet/asp-net-core/clipboard/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="ClipboardController.cs" %}
{% include code-snippet/excel/spreadsheet/asp-net-core/clipboard/clipboardController.cs %}
{% include code-snippet/spreadsheet/asp-net-core/clipboard/clipboardController.cs %}
{% endhighlight %}
{% endtabs %}

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

{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
{% include code-snippet/excel/spreadsheet/asp-net-core/prevent-paste/tagHelper %}
{% include code-snippet/spreadsheet/asp-net-core/prevent-paste/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="ClipboardController.cs" %}
{% include code-snippet/excel/spreadsheet/asp-net-core/prevent-paste/clipboardController.cs %}
{% include code-snippet/spreadsheet/asp-net-core/prevent-paste/clipboardController.cs %}
{% endhighlight %}
{% endtabs %}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
---
layout: post
title: Context Menu in EJ2 ASP.NET CORE Syncfusion Spreadsheet Component
title: Context Menu in EJ2 ASP.NET Core Syncfusion Spreadsheet Component
description: Learn here all about Context Menu in Syncfusion EJ2 ASP.NET CORE Spreadsheet component of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Context Menu
documentation: ug
---


# Context Menu in Spreadsheet control
# Context Menu in ASP.NET Core Spreadsheet control

Context Menu is used to improve user interaction with Spreadsheet using the popup menu. This will open when right-clicking on Cell/Column Header/Row Header/ Pager in the Spreadsheet. You can use [`enableContextMenu`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Spreadsheet.Spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_EnableContextMenu) property to enable/disable context menu.

Expand Down Expand Up @@ -71,10 +71,10 @@ In this demo, Custom Item is added after the Paste item in the context menu.

{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
{% include code-snippet/excel/spreadsheet/asp-net-core/add-context-menu/tagHelper %}
{% include code-snippet/spreadsheet/asp-net-core/add-context-menu/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="AddContextMenu.cs" %}
{% include code-snippet/excel/spreadsheet/asp-net-core/add-context-menu/addContextMenu.cs %}
{% include code-snippet/spreadsheet/asp-net-core/add-context-menu/addContextMenu.cs %}
{% endhighlight %}
{% endtabs %}

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

{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
{% include code-snippet/excel/spreadsheet/asp-net-core/remove-context-menu/tagHelper %}
{% include code-snippet/spreadsheet/asp-net-core/remove-context-menu/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="RemoveContextMenu.cs" %}
{% include code-snippet/excel/spreadsheet/asp-net-core/remove-context-menu/removeContextMenu.cs %}
{% include code-snippet/spreadsheet/asp-net-core/remove-context-menu/removeContextMenu.cs %}
{% endhighlight %}
{% endtabs %}

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

{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
{% include code-snippet/excel/spreadsheet/asp-net-core/enable-context-menu/tagHelper %}
{% include code-snippet/spreadsheet/asp-net-core/enable-context-menu/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="EnableContextMenu.cs" %}
{% include code-snippet/excel/spreadsheet/asp-net-core/enable-context-menu/enableContextMenu.cs %}
{% include code-snippet/spreadsheet/asp-net-core/enable-context-menu/enableContextMenu.cs %}
{% endhighlight %}
{% endtabs %}

Expand Down
32 changes: 16 additions & 16 deletions Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/data-binding.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ Refer to the following code example for local data binding.

{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
{% include code-snippet/excel/spreadsheet/asp-net-core/local-data-binding/tagHelper %}
{% include code-snippet/spreadsheet/asp-net-core/local-data-binding/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="LocalDataController.cs" %}
{% include code-snippet/excel/spreadsheet/asp-net-core/local-data-binding/localDataController.cs %}
{% include code-snippet/spreadsheet/asp-net-core/local-data-binding/localDataController.cs %}
{% endhighlight %}
{% endtabs %}

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

{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
{% include code-snippet/excel/spreadsheet/asp-net-core/field-mapping/tagHelper %}
{% include code-snippet/spreadsheet/asp-net-core/field-mapping/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="FieldMappingController.cs" %}
{% include code-snippet/excel/spreadsheet/asp-net-core/field-mapping/fieldMappingController.cs %}
{% include code-snippet/spreadsheet/asp-net-core/field-mapping/fieldMappingController.cs %}
{% endhighlight %}
{% endtabs %}

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

{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
{% include code-snippet/excel/spreadsheet/asp-net-core/remote-data-binding/tagHelper %}
{% include code-snippet/spreadsheet/asp-net-core/remote-data-binding/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="RemoteDataController.cs" %}
{% include code-snippet/excel/spreadsheet/asp-net-core/remote-data-binding/remoteDataController.cs %}
{% include code-snippet/spreadsheet/asp-net-core/remote-data-binding/remoteDataController.cs %}
{% endhighlight %}
{% endtabs %}

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

{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
{% include code-snippet/excel/spreadsheet/asp-net-core/odata-adaptor/tagHelper %}
{% include code-snippet/spreadsheet/asp-net-core/odata-adaptor/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="ODataController.cs" %}
{% include code-snippet/excel/spreadsheet/asp-net-core/odata-adaptor/oDataController.cs %}
{% include code-snippet/spreadsheet/asp-net-core/odata-adaptor/oDataController.cs %}
{% endhighlight %}
{% endtabs %}

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

{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
{% include code-snippet/excel/spreadsheet/asp-net-core/webapi-adaptor/tagHelper %}
{% include code-snippet/spreadsheet/asp-net-core/webapi-adaptor/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="WebApiController.cs" %}
{% include code-snippet/excel/spreadsheet/asp-net-core/webapi-adaptor/webApiController.cs %}
{% include code-snippet/spreadsheet/asp-net-core/webapi-adaptor/webApiController.cs %}
{% endhighlight %}
{% endtabs %}

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

{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
{% include code-snippet/excel/spreadsheet/asp-net-core/cell-data-binding/tagHelper %}
{% include code-snippet/spreadsheet/asp-net-core/cell-data-binding/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="CellDataController.cs" %}
{% include code-snippet/excel/spreadsheet/asp-net-core/cell-data-binding/cellDataController.cs %}
{% include code-snippet/spreadsheet/asp-net-core/cell-data-binding/cellDataController.cs %}
{% endhighlight %}
{% endtabs %}

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

{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
{% include code-snippet/excel/spreadsheet/asp-net-core/dynamic-data-binding/tagHelper %}
{% include code-snippet/spreadsheet/asp-net-core/dynamic-data-binding/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="DynamicDataController.cs" %}
{% include code-snippet/excel/spreadsheet/asp-net-core/dynamic-data-binding/dynamicDataController.cs %}
{% include code-snippet/spreadsheet/asp-net-core/dynamic-data-binding/dynamicDataController.cs %}
{% endhighlight %}
{% endtabs %}

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

{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
{% include code-snippet/excel/spreadsheet/asp-net-core/dynamic-data-binding-cs2/tagHelper %}
{% include code-snippet/spreadsheet/asp-net-core/dynamic-data-binding-cs2/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="UpdateRangeController.cs" %}
{% include code-snippet/excel/spreadsheet/asp-net-core/dynamic-data-binding-cs2/updateRangeController.cs %}
{% include code-snippet/spreadsheet/asp-net-core/dynamic-data-binding-cs2/updateRangeController.cs %}
{% endhighlight %}
{% endtabs %}

Expand Down
8 changes: 4 additions & 4 deletions Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/editing.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
---
layout: post
title: Editing in EJ2 ASP.NET CORE Syncfusion Spreadsheet Component
title: Editing in EJ2 ASP.NET Core Syncfusion Spreadsheet Component
description: Learn here all about Editing in Syncfusion EJ2 ASP.NET CORE Spreadsheet component of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Editing
documentation: ug
---


# Editing in Spreadsheet control
# Editing in ASP.NET Core Spreadsheet control

You can edit the contents of a cell directly in the cell or by typing in the formula bar. By default, the editing feature is enabled in the spreadsheet. Use the [`allowEditing`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Spreadsheet.Spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_AllowEditing) property to enable or disable the editing feature.

Expand Down Expand Up @@ -41,10 +41,10 @@ The following sample shows how to prevent the editing and cell save. Here `E` co

{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
{% include code-snippet/excel/spreadsheet/asp-net-core/editing/tagHelper %}
{% include code-snippet/spreadsheet/asp-net-core/editing/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="EditingController.cs" %}
{% include code-snippet/excel/spreadsheet/asp-net-core/editing/editingController.cs %}
{% include code-snippet/spreadsheet/asp-net-core/editing/editingController.cs %}
{% endhighlight %}
{% endtabs %}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
---
layout: post
title: Feature List in EJ2 ASP.NET CORE Syncfusion Spreadsheet Component
title: Feature List in EJ2 ASP.NET Core Syncfusion Spreadsheet Component
description: Learn here all about Feature List in Syncfusion EJ2 ASP.NET CORE Spreadsheet component of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Feature List
documentation: ug
---


# Comparision between EJ1 & EJ2 Spreadsheet features
# Comparison between EJ1 & EJ2 ASP.NET Core Spreadsheet features

The following table compares Excel functionality with the availability of EJ1 and EJ2 Spreadsheet features.

Expand Down
12 changes: 6 additions & 6 deletions Document-Processing/Excel/Spreadsheet/ASP-NET-CORE/filter.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
---
layout: post
title: Filter in EJ2 ASP.NET CORE Syncfusion Spreadsheet Component
title: Filter in EJ2 ASP.NET Core Syncfusion Spreadsheet Component
description: Learn here all about Filter in Syncfusion EJ2 ASP.NET CORE Spreadsheet component of Syncfusion Essential JS 2 and more.
platform: document-processing
control: Filter
documentation: ug
---


# Filtering in Spreadsheet control
# Filtering in ASP.NET Core Spreadsheet control

Filtering helps you to view specific rows in the spreadsheet by hiding the other rows. You can use the [`allowFiltering`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Spreadsheet.Spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_AllowFiltering) property to enable or disable filtering functionality.

Expand Down Expand Up @@ -38,10 +38,10 @@ The following code example shows `filter` functionality in the Spreadsheet contr

{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
{% include code-snippet/excel/spreadsheet/asp-net-core/filter/tagHelper %}
{% include code-snippet/spreadsheet/asp-net-core/filter/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="FilterController.cs" %}
{% include code-snippet/excel/spreadsheet/asp-net-core/filter/filterController.cs %}
{% include code-snippet/spreadsheet/asp-net-core/filter/filterController.cs %}
{% endhighlight %}
{% endtabs %}

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

{% tabs %}
{% highlight cshtml tabtitle="CSHTML" %}
{% include code-snippet/excel/spreadsheet/asp-net-core/filter-cs1/tagHelper %}
{% include code-snippet/spreadsheet/asp-net-core/filter-cs1/tagHelper %}
{% endhighlight %}
{% highlight c# tabtitle="InsertSheetController.cs" %}
{% include code-snippet/excel/spreadsheet/asp-net-core/filter-cs1/filterController.cs %}
{% include code-snippet/spreadsheet/asp-net-core/filter-cs1/filterController.cs %}
{% endhighlight %}
{% endtabs %}

Expand Down
Loading