Skip to content

Commit 4b38600

Browse files
Update all ExcelJS links to DevExtreme fork (#30470)
1 parent 01c839d commit 4b38600

File tree

8 files changed

+29
-29
lines changed

8 files changed

+29
-29
lines changed

apps/demos/Demos/DataGrid/ExcelJSCellCustomization/description.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ The [customizeCell](/Documentation/ApiReference/Common/Object_Structures/ExportD
22

33
You can access and change the following attributes:
44

5-
- <a href="https://github.com/exceljs/exceljs#fonts" target="_blank">Font</a> properties
6-
- <a href="https://github.com/exceljs/exceljs#fills" target="_blank">Cell background</a>
7-
- <a href="https://github.com/exceljs/exceljs#hyperlink-value" target="_blank">Cell values</a>
8-
- Text <a href="https://github.com/exceljs/exceljs#alignment" target="_blank">alignment</a>
9-
- <a href="https://github.com/exceljs/exceljs#number-formats" target="_blank">Formatting</a> properties
5+
- <a href="https://github.com/DevExpress/devextreme-exceljs-fork#fonts" target="_blank">Font</a> properties
6+
- <a href="https://github.com/DevExpress/devextreme-exceljs-fork#fills" target="_blank">Cell background</a>
7+
- <a href="https://github.com/DevExpress/devextreme-exceljs-fork#hyperlink-value" target="_blank">Cell values</a>
8+
- Text <a href="https://github.com/DevExpress/devextreme-exceljs-fork#alignment" target="_blank">alignment</a>
9+
- <a href="https://github.com/DevExpress/devextreme-exceljs-fork#number-formats" target="_blank">Formatting</a> properties
1010

1111
The [customizeCell](/Documentation/ApiReference/Common/Object_Structures/ExportDataGridProps/#customizeCell) function also allows you to identify row types. For example, this demo changes the background color and font weight for cells with the "group" [rowType](/Documentation/ApiReference/UI_Components/dxDataGrid/Row/#rowType).
1212
<!--split-->
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
This demo shows how you can use <a href="https://github.com/exceljs/exceljs" target="_blank">ExcelJS</a> API to export images to Excel [worksheets](https://github.com/exceljs/exceljs#add-a-worksheet).
1+
This demo shows how you can use <a href="https://github.com/DevExpress/devextreme-exceljs-fork" target="_blank">DevExtreme ExcelJS</a> API to export images to Excel [worksheets](https://github.com/DevExpress/devextreme-exceljs-fork#add-a-worksheet).
22

3-
See the [customizeCell](/Documentation/ApiReference/Common/Object_Structures/ExportDataGridProps/#customizeCell) callback for implementation details. The **workbook**.<a href="https://github.com/exceljs/exceljs#add-image-to-workbook" target="_blank">addImage()</a> method specifies image data and encoding. **tl** and **br** parameters are used to specify image location and span.
3+
See the [customizeCell](/Documentation/ApiReference/Common/Object_Structures/ExportDataGridProps/#customizeCell) callback for implementation details. The **workbook**.<a href="https://github.com/DevExpress/devextreme-exceljs-fork#add-image-to-workbook" target="_blank">addImage()</a> method specifies image data and encoding. **tl** and **br** parameters are used to specify image location and span.
44
<!--split-->
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The [exportDataGrid()](/Documentation/ApiReference/Common/Utils/excelExporter/#exportDataGridoptions) method allows users to export multiple grids to one Excel document. Grids are exported consequently in a <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/then" target="_blank">chain of Promises</a>.
22

3-
In this demo, this functionality is used to export two DataGrids into separate <a href="https://github.com/exceljs/exceljs#add-a-worksheet" target="_blank">worksheets</a> in the same <a href="https://github.com/exceljs/exceljs#create-a-workbook" target="_blank">workbook</a>. Starting position of each exported grid is set using the [topLeftCell](/Documentation/ApiReference/Common/Object_Structures/ExportDataGridProps/topLeftCell/) property.
3+
In this demo, this functionality is used to export two DataGrids into separate <a href="https://github.com/DevExpress/devextreme-exceljs-fork#add-a-worksheet" target="_blank">worksheets</a> in the same <a href="https://github.com/DevExpress/devextreme-exceljs-fork#create-a-workbook" target="_blank">workbook</a>. Starting position of each exported grid is set using the [topLeftCell](/Documentation/ApiReference/Common/Object_Structures/ExportDataGridProps/topLeftCell/) property.
44

55
Use the [customizeCell](/Documentation/ApiReference/Common/Object_Structures/ExportDataGridProps/#customizeCell) method to customize the exported worksheets.
66
<!--split-->
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
<a href="https://github.com/exceljs/exceljs" target="_blank">ExcelJS</a> library allows you to customize worksheets outside the exported cell area. This demo uses this functionality to add a header (a title before exported data) and a footer (a note after exported data).
1+
<a href="https://github.com/DevExpress/devextreme-exceljs-fork" target="_blank">DevExtreme ExcelJS</a> library allows you to customize worksheets outside the exported cell area. This demo uses this functionality to add a header (a title before exported data) and a footer (a note after exported data).
22

33
Review the [onExporting](/Documentation/ApiReference/UI_Components/dxDataGrid/Configuration/#onExporting) handler to see the data export code. The functions that create header and footer sections utilize the following customization features:
44

5-
- <a href="https://github.com/exceljs/exceljs#merged-cells" target="_blank">Merged cells</a>
6-
- <a href="https://github.com/exceljs/exceljs#value-types" target="_blank">Cell values</a> formatting
7-
- <a href="https://github.com/exceljs/exceljs#fonts" target="_blank">Font properties</a>
8-
- Text <a href="https://github.com/exceljs/exceljs#alignment" target="_blank">alignment</a>
5+
- <a href="https://github.com/DevExpress/devextreme-exceljs-fork#merged-cells" target="_blank">Merged cells</a>
6+
- <a href="https://github.com/DevExpress/devextreme-exceljs-fork#value-types" target="_blank">Cell values</a> formatting
7+
- <a href="https://github.com/DevExpress/devextreme-exceljs-fork#fonts" target="_blank">Font properties</a>
8+
- Text <a href="https://github.com/DevExpress/devextreme-exceljs-fork#alignment" target="_blank">alignment</a>
99
<!--split-->

apps/demos/Demos/DataGrid/ExcelJSOverview/description.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
To enable export in the DataGrid, reference or import the <a href="https://github.com/exceljs/exceljs" target="_blank">ExcelJS</a> and <a href="https://github.com/eligrey/FileSaver.js/" target="_blank">FileSaver</a> libraries. Set **export**.[enabled](/Documentation/ApiReference/UI_Components/dxDataGrid/Configuration/export/#enabled) to **true**.
1+
To enable export in the DataGrid, reference or import the <a href="https://github.com/DevExpress/devextreme-exceljs-fork" target="_blank">DevExtreme ExcelJS</a> and <a href="https://github.com/eligrey/FileSaver.js/" target="_blank">FileSaver</a> libraries. Set **export**.[enabled](/Documentation/ApiReference/UI_Components/dxDataGrid/Configuration/export/#enabled) to **true**.
22

3-
Once the conditions above are met, use the [exportDataGrid(options)](/Documentation/ApiReference/Common/Utils/excelExporter/#exportDataGridoptions) method to export the DataGrid to an Excel <a href="https://github.com/exceljs/exceljs#create-a-workbook" target="_blank">workbook</a>.
3+
Once the conditions above are met, use the [exportDataGrid(options)](/Documentation/ApiReference/Common/Utils/excelExporter/#exportDataGridoptions) method to export the DataGrid to an Excel <a href="https://github.com/DevExpress/devextreme-exceljs-fork#create-a-workbook" target="_blank">workbook</a>.
44

5-
Review the [onExporting](/Documentation/ApiReference/UI_Components/dxDataGrid/Configuration/#onExporting) handler to see the data export code. DataGrid is exported as is to a single <a href="https://github.com/exceljs/exceljs#add-a-worksheet" target="_blank">worksheet</a>. You can also set [allowExportSelectedData](/Documentation/ApiReference/UI_Components/dxDataGrid/Configuration/export/#allowExportSelectedData) to **true** to export only selected rows.
5+
Review the [onExporting](/Documentation/ApiReference/UI_Components/dxDataGrid/Configuration/#onExporting) handler to see the data export code. DataGrid is exported as is to a single <a href="https://github.com/DevExpress/devextreme-exceljs-fork#add-a-worksheet" target="_blank">worksheet</a>. You can also set [allowExportSelectedData](/Documentation/ApiReference/UI_Components/dxDataGrid/Configuration/export/#allowExportSelectedData) to **true** to export only selected rows.
66

77
You can export DataGrid to CSV. Call the **exportDataGrid(options)** method as shown in the following ticket: <a href="https://supportcenter.devexpress.com/ticket/details/t920593/pivotgrid-exceljs-export-to-export-pivotgrid-into-csv-file" target="_blank">Export PivotGrid into CSV file</a>.
88
<!--split-->

apps/demos/Demos/PivotGrid/ExcelJSCellCustomization/description.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ Our PivotGrid allows you to control and manage the data export process. You can
22

33
Our PivotGrid gives you access and allows you to change the following attributes:
44

5-
- <a href="https://github.com/exceljs/exceljs#fonts" target="_blank">Font</a> properties
6-
- <a href="https://github.com/exceljs/exceljs#fills" target="_blank">Cell background</a>
7-
- <a href="https://github.com/exceljs/exceljs#hyperlink-value" target="_blank">Cell values</a>
8-
- <a href="https://github.com/exceljs/exceljs#borders" target="_blank">Border</a> properties
9-
- <a href="https://github.com/exceljs/exceljs#number-formats" target="_blank">Formatting</a> properties
5+
- <a href="https://github.com/DevExpress/devextreme-exceljs-fork#fonts" target="_blank">Font</a> properties
6+
- <a href="https://github.com/DevExpress/devextreme-exceljs-fork#fills" target="_blank">Cell background</a>
7+
- <a href="https://github.com/DevExpress/devextreme-exceljs-fork#hyperlink-value" target="_blank">Cell values</a>
8+
- <a href="https://github.com/DevExpress/devextreme-exceljs-fork#borders" target="_blank">Border</a> properties
9+
- <a href="https://github.com/DevExpress/devextreme-exceljs-fork#number-formats" target="_blank">Formatting</a> properties
1010

1111
The **customizeCell** function also allows you to identify cell area types.
1212
<!--split-->
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
Our PivotGrid allows you to easily and accurately export its contents to Microsoft Excel. To enable export operations, you must reference or import <a href="https://github.com/exceljs/exceljs" target="_blank">ExcelJS</a> and <a href="https://github.com/eligrey/FileSaver.js/" target="_blank">FileSaver</a> libraries. You must also set **export**.[enabled](/Documentation/ApiReference/UI_Components/dxPivotGrid/Configuration/export/#enabled) to **true**.
1+
Our PivotGrid allows you to easily and accurately export its contents to Microsoft Excel. To enable export operations, you must reference or import <a href="https://github.com/DevExpress/devextreme-exceljs-fork" target="_blank">DevExtreme ExcelJS</a> and <a href="https://github.com/eligrey/FileSaver.js/" target="_blank">FileSaver</a> libraries. You must also set **export**.[enabled](/Documentation/ApiReference/UI_Components/dxPivotGrid/Configuration/export/#enabled) to **true**.
22

3-
Once you've referenced/imported both files and set **export**.**enabled** to **true**, use the [exportPivotGrid(options)](/Documentation/ApiReference/Common/Utils/excelExporter/#exportPivotGridoptions) method to export PivotGrid content to an Excel <a href="https://github.com/exceljs/exceljs#create-a-workbook" target="_blank">workbook</a>.
3+
Once you've referenced/imported both files and set **export**.**enabled** to **true**, use the [exportPivotGrid(options)](/Documentation/ApiReference/Common/Utils/excelExporter/#exportPivotGridoptions) method to export PivotGrid content to an Excel <a href="https://github.com/DevExpress/devextreme-exceljs-fork#create-a-workbook" target="_blank">workbook</a>.
44

5-
Please review the [onExporting](/Documentation/ApiReference/UI_Components/dxPivotGrid/Configuration/#onExporting) handler and its data export code to learn more. In this example, PivotGrid content is exported as is to a single <a href="https://github.com/exceljs/exceljs#add-a-worksheet" target="_blank">worksheet</a>.
5+
Please review the [onExporting](/Documentation/ApiReference/UI_Components/dxPivotGrid/Configuration/#onExporting) handler and its data export code to learn more. In this example, PivotGrid content is exported as is to a single <a href="https://github.com/DevExpress/devextreme-exceljs-fork#add-a-worksheet" target="_blank">worksheet</a>.
66
<!--split-->
77

88
You can export PivotGrid to CSV. Call the **exportPivotGrid(options)** method as shown in the following ticket: <a href="https://supportcenter.devexpress.com/ticket/details/t920593/pivotgrid-exceljs-export-to-export-pivotgrid-into-csv-file" target="_blank">Export PivotGrid into CSV file</a>.

apps/demos/Demos/PivotGrid/ExcelJsHeaderAndFooter/description.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
The PivotGrid allows you to customize a header and a footer in the exported Excel file. The <a href="https://github.com/exceljs/exceljs" target="_blank">ExcelJS</a> library allows you to customize worksheets outside of exported cell regions. This, in turns, allows you to add a header (a title before exported data) and a footer (a note after exported data).
1+
The PivotGrid allows you to customize a header and a footer in the exported Excel file. The <a href="https://github.com/DevExpress/devextreme-exceljs-fork" target="_blank">DevExtreme ExcelJS</a> library allows you to customize worksheets outside of exported cell regions. This, in turns, allows you to add a header (a title before exported data) and a footer (a note after exported data).
22
<!--split-->
33

44
Follow the steps below to configure a header/footer:
@@ -19,10 +19,10 @@ Follow the steps below to configure a header/footer:
1919

2020
4. Execute a promise after the [exportPivotGrid(options)](/Documentation/ApiReference/Common/Utils/excelExporter/#exportPivotGridoptions) method. In this promise, specify the position, appearance, and content of the header/footer. The functions used to generate header and footer sections utilize the following PivotGrid customization features:
2121

22-
- <a href="https://github.com/exceljs/exceljs#merged-cells" target="_blank">Merged cells</a>
22+
- <a href="https://github.com/DevExpress/devextreme-exceljs-fork#merged-cells" target="_blank">Merged cells</a>
2323

24-
- <a href="https://github.com/exceljs/exceljs#value-types" target="_blank">Cell values</a> formatting
24+
- <a href="https://github.com/DevExpress/devextreme-exceljs-fork#value-types" target="_blank">Cell values</a> formatting
2525

26-
- <a href="https://github.com/exceljs/exceljs#fonts" target="_blank">Font properties</a>
26+
- <a href="https://github.com/DevExpress/devextreme-exceljs-fork#fonts" target="_blank">Font properties</a>
2727

28-
- Text <a href="https://github.com/exceljs/exceljs#alignment" target="_blank">alignment</a>
28+
- Text <a href="https://github.com/DevExpress/devextreme-exceljs-fork#alignment" target="_blank">alignment</a>

0 commit comments

Comments
 (0)