From d5bbd1329297cf69bdbff8409615b66195a1659d Mon Sep 17 00:00:00 2001 From: DinakarSF4212 <147583019+DinakarSF4212@users.noreply.github.com> Date: Mon, 1 Jul 2024 15:31:51 +0530 Subject: [PATCH 1/2] 889454: Changed the titles of sections. --- ej2-asp-core-mvc/spreadsheet/filter.md | 3 +-- ej2-asp-core-mvc/spreadsheet/open-save.md | 6 +++--- ej2-asp-core-mvc/spreadsheet/sort.md | 1 - ej2-asp-core-mvc/spreadsheet/worksheet.md | 2 +- ej2-asp-core-toc.html | 1 - 5 files changed, 5 insertions(+), 8 deletions(-) diff --git a/ej2-asp-core-mvc/spreadsheet/filter.md b/ej2-asp-core-mvc/spreadsheet/filter.md index d028af71c4..689bc3dedf 100644 --- a/ej2-asp-core-mvc/spreadsheet/filter.md +++ b/ej2-asp-core-mvc/spreadsheet/filter.md @@ -94,8 +94,7 @@ When you want to reapply the filter after some changes happened in the rows. It The following errors have been handled for filtering, * *Out of range validation:* When the selected range is not a used range of the active sheet, it is considered as invalid and the out of range alert with the message `Select a cell or range inside the used range and try again` will be displayed. No filter will be performed if the range is invalid. -## Get the filtered rows - +## Get data from filtered rows Filtering allows you to view specific rows in a spreadsheet while hiding the others. The [allowFiltering](https://help.syncfusion.com/cr/aspnetcore-js2/syncfusion.ej2.spreadsheet.spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_AllowFiltering) property allows you to enable or disable filtering functionality through the UI. You can also use the [allowFiltering](https://help.syncfusion.com/cr/aspnetcore-js2/syncfusion.ej2.spreadsheet.spreadsheet.html#Syncfusion_EJ2_Spreadsheet_Spreadsheet_AllowFiltering) property and `applyFilter` method combination to filter data via code behind. The filtered rows can be identified by iterating through the row collection on the sheet and using the `isFiltered` property available in each row object. The following code example shows how to get the filtered rows. diff --git a/ej2-asp-core-mvc/spreadsheet/open-save.md b/ej2-asp-core-mvc/spreadsheet/open-save.md index 6d6fc72dac..898b3b0e49 100644 --- a/ej2-asp-core-mvc/spreadsheet/open-save.md +++ b/ej2-asp-core-mvc/spreadsheet/open-save.md @@ -140,7 +140,7 @@ You can open excel file into a read-only mode by using the [`openComplete`](http {% endtabs %} {% endif %} -### Import an excel document using file uploader +### Open an excel file using a file uploader If you explore your machine to select and upload an excel document using the file uploader, you will receive the uploaded document as a raw file in the `success` event of the file uploader. In this `success` event, you should pass the received raw file as an argument to the Spreadsheet's `open` method to see the appropriate output. @@ -218,7 +218,7 @@ The following code snippet demonstrates how to configure the deserialization opt {% endtabs %} {% endif %} -### To Open Spreadsheet data as a Base64 string +### Open an excel file from Base64 string data In the Syncfusion Spreadsheet component, there is no direct option to open data as a `Base64` string. To achieve this, the `import()` function fetches the `Base64` string, converts it to a Blob, creates a File object from the Blob, and then opens it using the `open` method in the spreadsheet. @@ -461,7 +461,7 @@ The following code snippet demonstrates how to configure the serialization optio {% endtabs %} {% endif %} -### To Save Spreadsheet data as a Base64 string +### To save data as a Base64 string In the Spreadsheet control, there is currently no direct option to save and open data as a `Base64` string. You can achieve this by saving the Spreadsheet data as blob data and then converting that saved blob data to a `Base64` string using `FileReader`. diff --git a/ej2-asp-core-mvc/spreadsheet/sort.md b/ej2-asp-core-mvc/spreadsheet/sort.md index d9b7f2bd78..851ca1f94d 100644 --- a/ej2-asp-core-mvc/spreadsheet/sort.md +++ b/ej2-asp-core-mvc/spreadsheet/sort.md @@ -204,7 +204,6 @@ The following errors have been handled for sorting, ## See Also -* [Sort a range by custom list](https://ej2.syncfusion.com/aspnetmvc/documentation/spreadsheet/how-to/sort-a-range-by-custom-list) * [Hyperlink](./link) * [Filtering](./filter) * [Undo Redo](./undo-redo) \ No newline at end of file diff --git a/ej2-asp-core-mvc/spreadsheet/worksheet.md b/ej2-asp-core-mvc/spreadsheet/worksheet.md index 461d568bdc..ab34ba3504 100644 --- a/ej2-asp-core-mvc/spreadsheet/worksheet.md +++ b/ej2-asp-core-mvc/spreadsheet/worksheet.md @@ -46,7 +46,7 @@ The following code example shows the insert sheet operation in spreadsheet. {% endtabs %} {% endif %} -### Insert a sheet programmatically and make it the active sheet +### Insert a sheet programmatically and make it active sheet A sheet is a collection of cells organized in the form of rows and columns that allows you to store, format, and manipulate the data. Using `insertSheet` method, you can insert one or more sheets at the desired index. Then, you can make the inserted sheet as active sheet by focusing the start cell of that sheet using the `goTo` method. diff --git a/ej2-asp-core-toc.html b/ej2-asp-core-toc.html index e425721556..e2f23e7875 100644 --- a/ej2-asp-core-toc.html +++ b/ej2-asp-core-toc.html @@ -2505,7 +2505,6 @@
  • Freeze Panes
  • Context Menu
  • Templates
  • -
  • Globalization
  • How To