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/guides/integration_with_angular.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -53,11 +53,11 @@ Now you should get the DHTMLX Event Calendar source code. First of all, stop the
53
53
54
54
### Step 1. Package installation
55
55
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.
57
57
58
58
### Step 2. Component creation
59
59
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.
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:
115
115
116
116
~~~css title="event-calendar.component.css"
117
117
/* import Event Calendar styles */
@@ -133,7 +133,7 @@ body {
133
133
134
134
#### Loading data
135
135
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:
137
137
138
138
~~~jsx title="data.ts"
139
139
exportfunctiongetData() {
@@ -242,7 +242,7 @@ Now the Event Calendar component is ready to use. When the element will be added
242
242
243
243
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/).
244
244
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:
Copy file name to clipboardExpand all lines: docs/guides/integration_with_react.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -56,7 +56,7 @@ Now you should get the DHTMLX Event Calendar source code. First of all, stop the
56
56
57
57
### Step 1. Package installation
58
58
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.
60
60
61
61
### Step 2. Component creation
62
62
@@ -73,7 +73,7 @@ import { EventCalendar } from 'dhx-eventcalendar-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 **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***.
77
77
78
78
- if you use the trial version of Event Calendar, specify the following paths:
Copy file name to clipboardExpand all lines: docs/guides/integration_with_svelte.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -58,7 +58,7 @@ Now you should get the DHTMLX Event Calendar source code. First of all, stop the
58
58
59
59
### Step 1. Package installation
60
60
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.
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***.
81
81
82
82
- if you use the trial version of Event Calendar, specify the following paths:
Copy file name to clipboardExpand all lines: docs/guides/integration_with_vue.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -60,7 +60,7 @@ Now you should get the DHTMLX Event Calendar source code. First of all, stop the
60
60
61
61
### Step 1. Package installation
62
62
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.
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***.
83
83
84
84
- if you use the trial version of Event Calendar, specify the following paths:
Copy file name to clipboardExpand all lines: docs/how_to_start.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,8 @@ This clear and comprehensive tutorial will guide your through the steps you need
10
10
11
11
## Step 1. Including source files
12
12
13
+
[Download the package](https://dhtmlx.com/docs/products/dhtmlxEventCalendar/download.shtml) and unpack it into the folder of your project.
14
+
13
15
Start from creating an HTML file and call it *index.html*. Then proceed to include Event Calendar source files into the created file.
14
16
15
17
There are two necessary files:
@@ -37,6 +39,10 @@ There are two necessary files:
37
39
38
40
You can import JavaScript Event Calendar into your project using `yarn` or `npm` package manager.
39
41
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
+
40
46
#### Installing trial Event Calendar via npm and yarn
0 commit comments