Skip to content

Commit 92d2d0c

Browse files
Merge pull request #28 from DHTMLX/next
[update] integration guides / minor fix
2 parents cfa9478 + 4baa84c commit 92d2d0c

File tree

5 files changed

+17
-11
lines changed

5 files changed

+17
-11
lines changed

docs/guides/integration_with_angular.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,11 @@ Now you should get the DHTMLX Event Calendar source code. First of all, stop the
5353

5454
### Step 1. Package installation
5555

56-
Download the [**trial Event Calendar package**](/how_to_start/#installing-event-calendar-via-npm-and-yarn) and follow steps mentioned in the README file. Note that trial Event Calendar is available 30 days only.
56+
Download the [**trial Event Calendar package**](/how_to_start/#installing-trial-event-calendar-via-npm-and-yarn) and follow steps mentioned in the README file. Note that trial Event Calendar is available 30 days only.
5757

5858
### Step 2. Component creation
5959

60-
Now you need to create an Angular component, to add Event Calendar into the application. Create the **event-calendar** folder in the **src/app/** directory, add a new file into it and name it **event-calendar.component.ts**. Then complete the steps described below.
60+
Now you need to create an Angular component, to add Event Calendar into the application. Create the ***event-calendar*** folder in the ***src/app/*** directory, add a new file into it and name it ***event-calendar.component.ts***. Then complete the steps described below.
6161

6262
#### Import source files
6363

@@ -111,7 +111,7 @@ export class EventCalendarComponent implements OnInit, OnDestroy {
111111

112112
#### Adding styles
113113

114-
To display Event Calendar correctly, you need to provide the corresponding styles. For this purpose, you can create the **event-calendar.component.css** file in the **src/app/event-calendar/** directory and specify important styles for Event Calendar and its container:
114+
To display Event Calendar correctly, you need to provide the corresponding styles. For this purpose, you can create the ***event-calendar.component.css*** file in the **src/app/event-calendar/** directory and specify important styles for Event Calendar and its container:
115115

116116
~~~css title="event-calendar.component.css"
117117
/* import Event Calendar styles */
@@ -133,7 +133,7 @@ body {
133133

134134
#### Loading data
135135

136-
To add data into Event Calendar, you need to provide a data set. You can create the **data.ts** file in the **src/app/event-calendar/** directory and add some data into it:
136+
To add data into Event Calendar, you need to provide a data set. You can create the ***data.ts*** file in the ***src/app/event-calendar/*** directory and add some data into it:
137137

138138
~~~jsx title="data.ts"
139139
export function getData() {
@@ -242,7 +242,7 @@ Now the Event Calendar component is ready to use. When the element will be added
242242

243243
When a user makes some action in the Event Calendar, it invokes an event. You can use these events to detect the action and run the desired code for it. See the [full list of events](/api/overview/events_overview/).
244244

245-
Open the **event-calendar.component.ts** file and complete the `ngOnInit()` method as in:
245+
Open the ***event-calendar.component.ts*** file and complete the `ngOnInit()` method as in:
246246

247247
~~~jsx {7-9} title="event-calendar.component.ts"
248248
// ...

docs/guides/integration_with_react.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Now you should get the DHTMLX Event Calendar source code. First of all, stop the
5656

5757
### Step 1. Package installation
5858

59-
Download the [**trial Event Calendar package**](/how_to_start/#installing-event-calendar-via-npm-and-yarn) and follow steps mentioned in the README file. Note that trial Event Calendar is available 30 days only.
59+
Download the [**trial Event Calendar package**](/how_to_start/#installing-trial-event-calendar-via-npm-and-yarn) and follow steps mentioned in the README file. Note that trial Event Calendar is available 30 days only.
6060

6161
### Step 2. Component creation
6262

@@ -73,7 +73,7 @@ import { EventCalendar } from 'dhx-eventcalendar-package';
7373
import 'dhx-eventcalendar-package/dist/event-calendar.css';
7474
~~~
7575

76-
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 **event-calendar.min.css**.
76+
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 ***event-calendar.min.css***.
7777

7878
- if you use the trial version of Event Calendar, specify the following paths:
7979

docs/guides/integration_with_svelte.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Now you should get the DHTMLX Event Calendar source code. First of all, stop the
5858

5959
### Step 1. Package installation
6060

61-
Download the [**trial Event Calendar package**](/how_to_start/#installing-event-calendar-via-npm-and-yarn) and follow steps mentioned in the README file. Note that trial Event Calendar is available 30 days only.
61+
Download the [**trial Event Calendar package**](/how_to_start/#installing-trial-event-calendar-via-npm-and-yarn) and follow steps mentioned in the README file. Note that trial Event Calendar is available 30 days only.
6262

6363
### Step 2. Component creation
6464

@@ -77,7 +77,7 @@ import 'dhx-eventcalendar-package/dist/event-calendar.css';
7777
</script>
7878
~~~
7979

80-
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 **event-calendar.min.css**.
80+
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 ***event-calendar.min.css***.
8181

8282
- if you use the trial version of Event Calendar, specify the following paths:
8383

docs/guides/integration_with_vue.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Now you should get the DHTMLX Event Calendar source code. First of all, stop the
6060

6161
### Step 1. Package installation
6262

63-
Download the [**trial Event Calendar package**](/how_to_start/#installing-event-calendar-via-npm-and-yarn) and follow steps mentioned in the README file. Note that trial Event Calendar is available 30 days only.
63+
Download the [**trial Event Calendar package**](/how_to_start/#installing-trial-event-calendar-via-npm-and-yarn) and follow steps mentioned in the README file. Note that trial Event Calendar is available 30 days only.
6464

6565
### Step 2. Component creation
6666

@@ -79,7 +79,7 @@ import 'dhx-eventcalendar-package/dist/event-calendar.css';
7979
</script>
8080
~~~
8181

82-
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 **event-calendar.min.css**.
82+
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 ***event-calendar.min.css***.
8383

8484
- if you use the trial version of Event Calendar, specify the following paths:
8585

docs/how_to_start.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ This clear and comprehensive tutorial will guide your through the steps you need
1010

1111
## Step 1. Including source files
1212

13+
[Download the package](https://dhtmlx.com/docs/products/dhtmlxEventCalendar/download.shtml) and unpack it into the folder of your project.
14+
1315
Start from creating an HTML file and call it *index.html*. Then proceed to include Event Calendar source files into the created file.
1416

1517
There are two necessary files:
@@ -37,6 +39,10 @@ There are two necessary files:
3739

3840
You can import JavaScript Event Calendar into your project using `yarn` or `npm` package manager.
3941

42+
:::info
43+
If you want to integrate Event Calendar into React, Angular, Svelte or Vue projects, refer to the corresponding [**integration guides**](/category/backend-and-frameworks-integration/) for more information.
44+
:::
45+
4046
#### Installing trial Event Calendar via npm and yarn
4147

4248
:::info

0 commit comments

Comments
 (0)