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/api/configs/history_config.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ description: You can learn about the history config in the documentation of the
11
11
@short: Optional. Enables/disables managing the history of changes
12
12
13
13
:::info
14
-
Using the `history` property you can enable/disable managing the history of changes in To Do List. If you set the `history` property to `false`, you will not be able to manage the history of changes using [`undo()`](../../../api/methods/undo_method/)/[`redo()`](../../../api/methods/redo_method/) methods and controls on Toolbar.
14
+
Using the `history` property you can enable/disable managing the history of changes in To Do List. If you set the `history` property to `false`, you will not be able to manage the history of changes using [`undo()`](/api/methods/undo_method/)/[`redo()`](/api/methods/redo_method/) methods and controls on Toolbar.
15
15
:::
16
16
17
17
### Usage
@@ -67,5 +67,5 @@ new ToDo("#root", {
67
67
**Change log:** The `history` config was added in v1.3
Copy file name to clipboardExpand all lines: docs/api/configs/locale_config.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ locale?: object;
18
18
19
19
### Default config
20
20
21
-
By default, DHTMLX To Do List uses [English locale](../../../guides/localization/#default-locale).
21
+
By default, DHTMLX To Do List uses [English locale](/guides/localization/#default-locale).
22
22
23
23
~~~js
24
24
locale: en
@@ -45,13 +45,13 @@ const toolbar = new Toolbar("#toolbar", {
45
45
46
46
47
47
:::info
48
-
The Toolbar is a separate component of To Do List . Thus, you also need to apply the necessary locale to the **Toolbar** via the related [`locale`](../../../api/toolbar_../../../api/configs/locale_config/) property
48
+
The Toolbar is a separate component of To Do List . Thus, you also need to apply the necessary locale to the **Toolbar** via the related [`locale`](/api/toolbar_api/configs/locale_config/) property
49
49
:::
50
50
51
51
:::tip
52
-
To change the locale dynamically, use the [`setLocale()`](../../../api/methods/setlocale_method/) method
52
+
To change the locale dynamically, use the [`setLocale()`](/api/methods/setlocale_method/) method
Copy file name to clipboardExpand all lines: docs/api/configs/projects_config.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,9 +52,9 @@ const toolbar = new Toolbar("#toolbar", {
52
52
~~~
53
53
54
54
:::tip
55
-
By default, the first project from the list of project objects will be loaded as an active project. To specify any other project as an active one, use the [`activeProject`](../../../api/configs/activeproject_config/) property
55
+
By default, the first project from the list of project objects will be loaded as an active project. To specify any other project as an active one, use the [`activeProject`](/api/configs/activeproject_config/) property
56
56
:::
57
57
58
58
**Related articles:**
59
-
-[Loading and storing data](../../../guides/loading_data/)
Copy file name to clipboardExpand all lines: docs/api/configs/tasks_config.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
@@ -39,7 +39,7 @@ The **tasks** property presents an array of task objects. Each object includes t
39
39
40
40
-`id` - (optional) the id of a task
41
41
-`parent` - (optional) the id of the parent task. The value of the parameter is **null | undefined** for root tasks
42
-
-`project` - (optional) the id of the project where the task should be rendered. To initialize the projects, use the [projects](../../../api/configs/projects_config/) property.
42
+
-`project` - (optional) the id of the project where the task should be rendered. To initialize the projects, use the [projects](/api/configs/projects_config/) property.
43
43
44
44
:::info
45
45
If there are projects initialized, specify the ID of the necessary project for the root task to display it in this project.
@@ -50,12 +50,12 @@ If you don't specify the project ID for the root task or set it to *null* or *un
50
50
-`text` - (optional) the text of the task
51
51
-`checked` - (optional) marks the task as completed
52
52
-`collapsed` - (optional) defines whether the task is collapsed initially (in case the task has subtasks)
53
-
-`assigned` - (optional) an array with ID(s) of the people assigned to the task. To initialize the list of assignees, use the [users](../../../api/configs/users_config/) property.
53
+
-`assigned` - (optional) an array with ID(s) of the people assigned to the task. To initialize the list of assignees, use the [users](/api/configs/users_config/) property.
54
54
-`due_date` - (optional) the date when the task must be completed
55
55
-`creation_date` - (optional) the date of the task creation (auto-generated)
56
56
-`completion_date` - (optional) the date of the task completion (auto-generated when you mark a task as complete; auto-removed when you mark a task as incomplete)
57
57
-`edited_date` - (optional) the date of the task editing (auto-generated when you change the text of the task)
58
-
-`priority` - (optional) the priority of the task. To set the priorities, use the [priorities](../../../api/configs/priorities_config/) property
58
+
-`priority` - (optional) the priority of the task. To set the priorities, use the [priorities](/api/configs/priorities_config/) property
59
59
-`[key: string]`- (optional) a set of custom properties
60
60
61
61
### Example
@@ -115,5 +115,5 @@ const toolbar = new Toolbar("#toolbar", {
115
115
**Change log:** The `priority` parameter was added in v1.2
116
116
117
117
**Related articles:**
118
-
-[Loading and storing data](../../../guides/loading_data/)
119
-
-[Managing tasks](../../../guides/task_index/)
118
+
-[Loading and storing data](/guides/loading_data/)
0 commit comments