From 3b5c5f24dfaafe4645bf50380320e8f37ffa68da Mon Sep 17 00:00:00 2001 From: DinakarSF4212 <147583019+DinakarSF4212@users.noreply.github.com> Date: Tue, 2 Jul 2024 23:28:20 +0530 Subject: [PATCH 1/2] 894022: Updated reference links. --- ej2-asp-core-mvc/spreadsheet/cell-range.md | 2 +- ej2-asp-core-mvc/spreadsheet/data-binding.md | 3 +-- ej2-asp-core-mvc/spreadsheet/formulas.md | 6 +++--- ej2-asp-core-mvc/spreadsheet/global-local.md | 20 +++++++++++++++++-- .../spreadsheet/how-to/change-active-sheet.md | 2 +- ej2-asp-core-mvc/spreadsheet/illustrations.md | 2 +- ej2-asp-core-mvc/spreadsheet/overview.md | 3 +-- 7 files changed, 26 insertions(+), 12 deletions(-) diff --git a/ej2-asp-core-mvc/spreadsheet/cell-range.md b/ej2-asp-core-mvc/spreadsheet/cell-range.md index 0301ff870d..b5f6475ba5 100644 --- a/ej2-asp-core-mvc/spreadsheet/cell-range.md +++ b/ej2-asp-core-mvc/spreadsheet/cell-range.md @@ -65,7 +65,7 @@ You can merge the range of cells in the following ways, * Set the `rowSpan` and `colSpan` property in `cell` to merge the number of cells at initial load. * Select the range of cells and apply merge by selecting the desired option from ribbon toolbar. -* Use `merge`] method to merge the range of cells, once the component is loaded. +* Use `merge` method to merge the range of cells, once the component is loaded. The available merge options in spreadsheet are, diff --git a/ej2-asp-core-mvc/spreadsheet/data-binding.md b/ej2-asp-core-mvc/spreadsheet/data-binding.md index 9d43180ea6..50843a85df 100644 --- a/ej2-asp-core-mvc/spreadsheet/data-binding.md +++ b/ej2-asp-core-mvc/spreadsheet/data-binding.md @@ -249,5 +249,4 @@ N> For `add` action, the value for all the fields will be `null` in the data. In * [Filtering](filter) * [Sorting](sort) -* [Hyperlink](link) -* [`Collaborative Editing`](use-cases/collaborative-editing) \ No newline at end of file +* [Hyperlink](link) \ No newline at end of file diff --git a/ej2-asp-core-mvc/spreadsheet/formulas.md b/ej2-asp-core-mvc/spreadsheet/formulas.md index 2d6bf7ee1f..7d050ff6e7 100644 --- a/ej2-asp-core-mvc/spreadsheet/formulas.md +++ b/ej2-asp-core-mvc/spreadsheet/formulas.md @@ -86,7 +86,7 @@ The following code example shows an unsupported formula in the spreadsheet. {% endtabs %} {% endif %} -Second, if you want to directly compute any formula or expression, you can use the [computeExpression](../api/spreadsheet/#computeexpression) method. This method will work for both built-in and used-defined/custom formula. +Second, if you want to directly compute any formula or expression, you can use the `computeExpression` method. This method will work for both built-in and used-defined/custom formula. The following code example shows how to use `computeExpression` method in the spreadsheet. @@ -267,5 +267,5 @@ If you enter an invalid formula in a cell, an error dialog with an error message * [Editing](./editing) * [Formatting](./formatting) -* [Open](./open) -* [Save](./save) +* [Open](./open-save#open) +* [Save](./open-save#save) diff --git a/ej2-asp-core-mvc/spreadsheet/global-local.md b/ej2-asp-core-mvc/spreadsheet/global-local.md index d4f4bfd030..e5c0202092 100644 --- a/ej2-asp-core-mvc/spreadsheet/global-local.md +++ b/ej2-asp-core-mvc/spreadsheet/global-local.md @@ -12,7 +12,15 @@ documentation: ug ## Localization -The [Localization](https://ej2.syncfusion.com/aspnetmvc/documentation/common/localization/) library allows you to localize the default text content of the Spreadsheet. The Spreadsheet has static text on some features (cell formatting, Merge, Data validation, etc.) that can be changed to other cultures (Arabic, Deutsch, French, etc.) by defining the [locale](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Spreadsheet.Spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_Locale) value and translation object. +{% if page.publishingplatform == "aspnet-core" %} + +The [Localization](https://ej2.syncfusion.com/aspnetcore/documentation/common/localization) library allows you to localize the default text content of the Spreadsheet. The Spreadsheet has static text on some features (cell formatting, Merge, Data validation, etc.) that can be changed to other cultures (Arabic, Deutsch, French, etc.) by defining the [locale](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Spreadsheet.Spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_Locale) value and translation object. + +{% elsif page.publishingplatform == "aspnet-mvc" %} + +The [Localization](https://ej2.syncfusion.com/aspnetmvc/documentation/common/localization/) library allows you to localize the default text content of the Spreadsheet. The Spreadsheet has static text on some features (cell formatting, Merge, Data validation, etc.) that can be changed to other cultures (Arabic, Deutsch, French, etc.) by defining the [locale](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.Spreadsheet.Spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_Locale) value and translation object. + +{% endif %} The following list of properties and their values are used in the Spreadsheet. @@ -468,4 +476,12 @@ RTL provides an option to switch the text direction and layout of the Spreadshee ## See Also -* [Localization](../common/localization) +{% if page.publishingplatform == "aspnet-core" %} + +* [Localization](https://ej2.syncfusion.com/aspnetcore/documentation/common/localization) + +{% elsif page.publishingplatform == "aspnet-mvc" %} + +* [Localization](https://ej2.syncfusion.com/aspnetmvc/documentation/common/localization/) + +{% endif %} \ No newline at end of file diff --git a/ej2-asp-core-mvc/spreadsheet/how-to/change-active-sheet.md b/ej2-asp-core-mvc/spreadsheet/how-to/change-active-sheet.md index 87a9a9cabd..d15556bb6c 100644 --- a/ej2-asp-core-mvc/spreadsheet/how-to/change-active-sheet.md +++ b/ej2-asp-core-mvc/spreadsheet/how-to/change-active-sheet.md @@ -10,7 +10,7 @@ documentation: ug ## Changing the active sheet while importing a file in Spreadsheet Control -You can change the active sheet of imported file by updating [`activeSheetIndex`](https://ej2.syncfusion.com/react/documentation/api/spreadsheet/#activesheetindex) property on the [`openComplete`](https://ej2.syncfusion.com/react/documentation/api/spreadsheet/#opencomplete) event. +You can change the active sheet of imported file by updating [`activeSheetIndex`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Spreadsheet.Spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_ActiveSheetIndex) property on the [`openComplete`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Spreadsheet.Spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_OpenComplete) event. The following code example shows how to set the active sheet when importing an Excel file. diff --git a/ej2-asp-core-mvc/spreadsheet/illustrations.md b/ej2-asp-core-mvc/spreadsheet/illustrations.md index b163d0ff5b..a8844e4dc5 100644 --- a/ej2-asp-core-mvc/spreadsheet/illustrations.md +++ b/ej2-asp-core-mvc/spreadsheet/illustrations.md @@ -208,7 +208,7 @@ Chart feature allows you to view and insert a chart in a spreadsheet, and you ca #### Customization of line chart markers -Using the [`actionBegin`](../api/spreadsheet/#actionbegin) event, you can change the shape, size, fill color, and border of the line chart marker. In the following example, you can see the modified marker appearance, such as shape and size, while creating the line chart with UI interaction. +Using the [`actionBegin`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Spreadsheet.Spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_ActionBegin) event, you can change the shape, size, fill color, and border of the line chart marker. In the following example, you can see the modified marker appearance, such as shape and size, while creating the line chart with UI interaction. {% if page.publishingplatform == "aspnet-core" %} diff --git a/ej2-asp-core-mvc/spreadsheet/overview.md b/ej2-asp-core-mvc/spreadsheet/overview.md index ac26a811f9..544909a20e 100644 --- a/ej2-asp-core-mvc/spreadsheet/overview.md +++ b/ej2-asp-core-mvc/spreadsheet/overview.md @@ -27,7 +27,6 @@ The Spreadsheet is an user interactive control to organize and analyze data in t * [Sorting](sort): Helps you to arrange the data to particular order in a selected range of cells. * [Filtering](filter): Helps you to view specific rows in the Spreadsheet by hiding the other rows. * [Undo Redo](undo-redo): Provides the option to perform undo redo operations in Spreadsheet. -* [Collaborative editing](use-cases/collaborative-editing): Provides the option for real time changes across multiple users in the Spreadsheet. * [Hyperlink](link): Provides the option to navigate to web link or cell reference within the sheet or to other sheet in Spreadsheet. * [Resize](mobile-responsiveness): Allows you to change the row height and column width. Auto fit the rows and columns based on its content. * [Wrap text](cell-range#wrap-text): Provides the option to display the large content as multiple lines in a single cell. @@ -48,7 +47,7 @@ The Spreadsheet is an user interactive control to organize and analyze data in t * [Password protection](protect-sheet#protect-workbook): Allows you to protect the workbook with a password. * [Multi-line editing](editing): Allows you to insert a line break between paragraphs of the text within a cell in a Spreadsheet. * [Calculate range selection](selection): Helps you to select a range or multiple ranges when editing a formula in a cell. -* [Right-to-left (RTL)](right-to-left): Aligns content in the Spreadsheet control from right to left. +* [Right-to-left (RTL)](global-local#right-to-left-rtl): Aligns content in the Spreadsheet control from right to left. * [Templates](template): Templates can be used to create custom user experiences in the Spreadsheet. * [Globalization](global-local): Personalize the Spreadsheet control with different languages, as well as culture-specific number, date, and time formatting. * [Accessibility](accessibility): Provides with built-in accessibility support which helps to access all the Spreadsheet control features through the keyboard, screen readers, or other assistive technology devices. From 5a839b59070cc9c344aa5c39b49e34be3f3ad173 Mon Sep 17 00:00:00 2001 From: DinakarSF4212 <147583019+DinakarSF4212@users.noreply.github.com> Date: Wed, 3 Jul 2024 19:41:18 +0530 Subject: [PATCH 2/2] 894022: Resolved the Front Matter Errors. --- ej2-asp-core-mvc/spreadsheet/how-to/change-active-sheet.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ej2-asp-core-mvc/spreadsheet/how-to/change-active-sheet.md b/ej2-asp-core-mvc/spreadsheet/how-to/change-active-sheet.md index d15556bb6c..86ac006d4f 100644 --- a/ej2-asp-core-mvc/spreadsheet/how-to/change-active-sheet.md +++ b/ej2-asp-core-mvc/spreadsheet/how-to/change-active-sheet.md @@ -1,14 +1,14 @@ --- layout: post -title: Changing the active sheet while importing a file in ##Platform_Name## Spreadsheet Control | Syncfusion -description: Learn here all about changing the active sheet index while importing a file in Syncfusion ##Platform_Name## Spreadsheet component of Syncfusion Essential JS 2 and more. +title: Change active sheet in ##Platform_Name## Spreadsheet control | Syncfusion +description: Learn here all about changing active sheet index when import a file in Syncfusion ##Platform_Name## Spreadsheet control of Syncfusion Essential JS 2 and more. platform: ej2-asp-core-mvc control: Spreadsheet publishingplatform: ##Platform_Name## documentation: ug --- -## Changing the active sheet while importing a file in Spreadsheet Control +# Changing the active sheet in Spreadsheet control You can change the active sheet of imported file by updating [`activeSheetIndex`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Spreadsheet.Spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_ActiveSheetIndex) property on the [`openComplete`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.Spreadsheet.Spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_OpenComplete) event.