Skip to content

Commit b9d3929

Browse files
committed
[update] add link to how to start, remove unused links in the integration guides
1 parent ecbb946 commit b9d3929

File tree

4 files changed

+16
-8
lines changed

4 files changed

+16
-8
lines changed

docs/angular_integration.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,8 @@ Now we should get the DHTMLX Spreadsheet code. First of all, we need to stop the
5353
### Step 1. Package installation
5454

5555
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.
5658

5759
### Step 2. Component creation
5860

@@ -62,7 +64,7 @@ Now we should create a component, to add a Spreadsheet into the application. Let
6264

6365
Open the file and import Spreadsheet source files. Note that:
6466

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:
6668

6769
~~~
6870
import { Spreadsheet } from 'dhx-spreadsheet-package';
@@ -71,7 +73,7 @@ import 'dhx-spreadsheet-package/codebase/spreadsheet.css';
7173

7274
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**.
7375

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:
7577

7678
~~~
7779
import { Spreadsheet } from '@dhx/trial-spreadsheet';

docs/react_integration.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@ Now we should get the DHTMLX Spreadsheet code. First of all, we need to stop the
6262

6363
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.
6464

65+
Check the [How to Start](/spreadsheet/how_to_start/) guide to learn about the available installation ways.
66+
6567
### Step 2. Component creation
6668

6769
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
7072

7173
Open the file and import Spreadsheet source files. Note that:
7274

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:
7476

7577
~~~html title="Spreadsheet.jsx"
7678
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
8385
**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)
8486
}}
8587

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:
8789

8890
~~~html title="Spreadsheet.jsx"
8991
import { Spreadsheet } from '@dhx/trial-spreadsheet';

docs/svelte_integration.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,8 @@ Now we should get the DHTMLX Spreadsheet code. First of all, we need to stop the
7070

7171
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.
7272

73+
Check the [How to Start](/spreadsheet/how_to_start/) guide to learn about the available installation ways.
74+
7375
### Step 2. Component creation
7476

7577
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
7880

7981
Open the file and import Spreadsheet source files. Note that:
8082

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:
8284

8385
~~~html title="Spreadsheet.svelte"
8486
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
9193
**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)
9294
}}
9395

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:
9597

9698
~~~html title="Spreadsheet.svelte"
9799
import { Spreadsheet } from '@dhx/trial-spreadsheet';

docs/vuejs_integration.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ Now we should get the DHTMLX Spreadsheet code. First of all, we need to stop the
6363

6464
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.
6565

66+
Check the [How to Start](/spreadsheet/how_to_start/) guide to learn about the available installation ways.
67+
6668
### Step 2. Component creation
6769

6870
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.
7173

7274
Open the file and import Spreadsheet source files. Note that:
7375

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:
7577

7678
~~~html title="Spreadsheet.vue"
7779
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
8486
**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)
8587
}}
8688

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:
8890

8991
~~~html title="Spreadsheet.vue"
9092
import { Spreadsheet } from '@dhx/trial-spreadsheet';

0 commit comments

Comments
 (0)