You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/angular_integration.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -53,6 +53,8 @@ Now we should get the DHTMLX Spreadsheet code. First of all, we need to stop the
53
53
### Step 1. Package installation
54
54
55
55
Download the [**trial Spreadsheet package**](https://dhtmlx.com/docs/products/dhtmlxSpreadsheet/download.shtml) and follow the steps mentioned in the *README* file. Note that the trial Spreadsheet is available 30 days only.
56
+
57
+
Check the [How to Start](/spreadsheet/how_to_start/) guide to learn about the available installation ways.
56
58
57
59
### Step 2. Component creation
58
60
@@ -62,7 +64,7 @@ Now we should create a component, to add a Spreadsheet into the application. Let
62
64
63
65
Open the file and import Spreadsheet source files. Note that:
64
66
65
-
- if you've [installed the Spreadsheet package from a local folder](#installing-the-package-from-a-local-folder), your import paths will look like this:
67
+
- if you've installed the Spreadsheet package from a local folder, your import paths will look like this:
66
68
67
69
~~~
68
70
import { Spreadsheet } from 'dhx-spreadsheet-package';
Note that depending on the used package, the source files can be minified. In this case make sure that you are importing the CSS file as **spreadsheet.min.css**.
73
75
74
-
- if you've chosen to [install the trial version](#installing-the-trial-version-via-a-package-manager), the import paths should be as in:
76
+
- if you've chosen to install the trial version], the import paths should be as in:
75
77
76
78
~~~
77
79
import { Spreadsheet } from '@dhx/trial-spreadsheet';
Copy file name to clipboardExpand all lines: docs/react_integration.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -62,6 +62,8 @@ Now we should get the DHTMLX Spreadsheet code. First of all, we need to stop the
62
62
63
63
Download the [**trial Spreadsheet package**](https://dhtmlx.com/docs/products/dhtmlxSpreadsheet/download.shtml) and follow the steps mentioned in the *README* file. Note that the trial Spreadsheet is available 30 days only.
64
64
65
+
Check the [How to Start](/spreadsheet/how_to_start/) guide to learn about the available installation ways.
66
+
65
67
### Step 2. Component creation
66
68
67
69
Now we should create a React component, to add a Spreadsheet into the application. Let's create a new file in the ***src/*** directory and name it ***Spreadsheet.jsx***.
@@ -70,7 +72,7 @@ Now we should create a React component, to add a Spreadsheet into the applicatio
70
72
71
73
Open the file and import Spreadsheet source files. Note that:
72
74
73
-
- if you've [installed the Spreadsheet package from a local folder](#installing-the-package-from-a-local-folder), your import paths will look like this:
75
+
- if you've installed the Spreadsheet package from a local folder, your import paths will look like this:
74
76
75
77
~~~html title="Spreadsheet.jsx"
76
78
import { Spreadsheet } from 'dhx-spreadsheet-package';
@@ -83,7 +85,7 @@ Note that depending on the used package, the source files can be minified. In th
83
85
**In case you use *npm* with a local Spreadsheet package**, the way of importing Spreadsheet source files is different. [Check the details below](#using-npm-with-spreadsheet-package)
84
86
}}
85
87
86
-
- if you've chosen to [install the trial version](#installing-the-trial-version-via-a-package-manager), the import paths should be as in:
88
+
- if you've chosen to install the trial version, the import paths should be as in:
87
89
88
90
~~~html title="Spreadsheet.jsx"
89
91
import { Spreadsheet } from '@dhx/trial-spreadsheet';
Copy file name to clipboardExpand all lines: docs/svelte_integration.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -70,6 +70,8 @@ Now we should get the DHTMLX Spreadsheet code. First of all, we need to stop the
70
70
71
71
Download the [**trial Spreadsheet package**](https://dhtmlx.com/docs/products/dhtmlxSpreadsheet/download.shtml) and follow the steps mentioned in the *README* file. Note that the trial Spreadsheet is available 30 days only.
72
72
73
+
Check the [How to Start](/spreadsheet/how_to_start/) guide to learn about the available installation ways.
74
+
73
75
### Step 2. Component creation
74
76
75
77
Now we should create a Svelte component, to add a Spreadsheet into the application. Let's create a new file in the ***src/*** directory and name it ***Spreadsheet.svelte***.
@@ -78,7 +80,7 @@ Now we should create a Svelte component, to add a Spreadsheet into the applicati
78
80
79
81
Open the file and import Spreadsheet source files. Note that:
80
82
81
-
- if you've [installed the Spreadsheet package from a local folder](#installing-the-package-from-a-local-folder), your import paths will look like this:
83
+
- if you've installed the Spreadsheet package from a local folder, your import paths will look like this:
82
84
83
85
~~~html title="Spreadsheet.svelte"
84
86
import { Spreadsheet } from 'dhx-spreadsheet-package';
@@ -91,7 +93,7 @@ Note that depending on the used package, the source files can be minified. In th
91
93
**In case you use *npm* with a local Spreadsheet package**, the way of importing Spreadsheet source files is different. [Check the details below](#using-npm-with-spreadsheet-package)
92
94
}}
93
95
94
-
- if you've chosen to [install the trial version](#installing-the-trial-version-via-a-package-manager), the import paths should be as in:
96
+
- if you've chosen to install the trial version, the import paths should be as in:
95
97
96
98
~~~html title="Spreadsheet.svelte"
97
99
import { Spreadsheet } from '@dhx/trial-spreadsheet';
Copy file name to clipboardExpand all lines: docs/vuejs_integration.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -63,6 +63,8 @@ Now we should get the DHTMLX Spreadsheet code. First of all, we need to stop the
63
63
64
64
Download the [**trial Spreadsheet package**](https://dhtmlx.com/docs/products/dhtmlxSpreadsheet/download.shtml) and follow the steps mentioned in the *README* file. Note that the trial Spreadsheet is available 30 days only.
65
65
66
+
Check the [How to Start](/spreadsheet/how_to_start/) guide to learn about the available installation ways.
67
+
66
68
### Step 2. Component creation
67
69
68
70
Now we should create a Vue component, to add a Spreadsheet into the application. Let's create a new file in the ***src/components/*** directory and name it ***Spreadsheet.vue***.
@@ -71,7 +73,7 @@ Now we should create a Vue component, to add a Spreadsheet into the application.
71
73
72
74
Open the file and import Spreadsheet source files. Note that:
73
75
74
-
- if you've [installed the Spreadsheet package from a local folder](#installing-the-package-from-a-local-folder), your import paths will look like this:
76
+
- if you've installed the Spreadsheet package from a local folder, your import paths will look like this:
75
77
76
78
~~~html title="Spreadsheet.vue"
77
79
import { Spreadsheet } from 'dhx-spreadsheet-package';
@@ -84,7 +86,7 @@ Note that depending on the used package, the source files can be minified. In th
84
86
**In case you use *npm* with a local Spreadsheet package**, the way of importing Spreadsheet source files is different. [Check the details below](#using-npm-with-spreadsheet-package)
85
87
}}
86
88
87
-
- if you've chosen to [install the trial version](#installing-the-trial-version-via-a-package-manager), the import paths should be as in:
89
+
- if you've chosen to install the trial version, the import paths should be as in:
88
90
89
91
~~~html title="Spreadsheet.vue"
90
92
import { Spreadsheet } from '@dhx/trial-spreadsheet';
0 commit comments