Skip to content

Commit 9063d21

Browse files
[update] links
1 parent 64d0a3d commit 9063d21

File tree

113 files changed

+610
-586
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

113 files changed

+610
-586
lines changed

docs/api/common/js_kanban_meta_parameter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,4 @@ board.addCard({
4949

5050
**Change log:** The `$meta` parameter was introduced in v1.3
5151

52-
**Related article:** [`history`](/api/config/js_kanban_history_config.md)
52+
**Related article:** [`history`](/api/config/js_kanban_history_config)

docs/api/config/js_kanban_cardheight_config.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ cardHeight?: number; // px
1717
~~~
1818

1919
:::important
20-
When using [`renderType: "lazy"`](/api/config/js_kanban_rendertype_config.md) together with [`scrollType: "default"`](/api/config/js_kanban_scrolltype_config.md), it's important to set a fixed height for cards using the `cardHeight` property. Without this, the cards won't be visible.
20+
When using [`renderType: "lazy"`](/api/config/js_kanban_rendertype_config) together with [`scrollType: "default"`](/api/config/js_kanban_scrolltype_config), it's important to set a fixed height for cards using the `cardHeight` property. Without this, the cards won't be visible.
2121
:::
2222

2323
### Example
@@ -33,6 +33,6 @@ new kanban.Kanban("#root", {
3333

3434
**Change log:** This property was introduced in version 1.2
3535

36-
**Related articles:** [Configuration](/guides/configuration#cards)
36+
**Related articles:** [Configuration](/guides/configuration/#cards)
3737

3838
**Related sample:** [Kanban. Lazy rendering and column scroll](https://snippet.dhtmlx.com/xez9ghqq?tag=kanban)

docs/api/config/js_kanban_cards_config.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -70,15 +70,15 @@ Each card can include the following parameters:
7070
- `name` - (optional) file name
7171
- `isCover` - (optional) when **true**, the cover image is loaded from the "coverURL"
7272
- `color` - (optional) HEX color code representing the card's top line color
73-
- `users` - (optional) either an **array** of user IDs for multiple users or a **string | number** for a single user. To assign users, define an array with user data in the [cardShape.users](../js_kanban_cardshape_config) property. Users appear in the **Users** field
73+
- `users` - (optional) either an **array** of user IDs for multiple users or a **string | number** for a single user. To assign users, define an array with user data in the [`cardShape.users`](/api/config/js_kanban_cardshape_config) property. Users appear in the **Users** field
7474

7575
:::info
76-
`users?: array` - use an **array** of user **IDs** when using the [**multiselect**](../js_kanban_editorshape_config/#--parameters-for-combo-select-and-multiselect-types) editor type for multiple user assignments
76+
`users?: array` - use an **array** of user **IDs** when using the [**multiselect**](/api/config/js_kanban_editorshape_config/#--parameters-for-combo-select-and-multiselect-types) editor type for multiple user assignments
7777

78-
`users?: string | number` - specify a single user **ID** when using the [**combo** or **select**](../js_kanban_editorshape_config/#--parameters-for-combo-select-and-multiselect-types) editor types for single user assignment
78+
`users?: string | number` - specify a single user **ID** when using the [**combo** or **select**](/api/config/js_kanban_editorshape_config/#--parameters-for-combo-select-and-multiselect-types) editor types for single user assignment
7979
:::
8080

81-
- `priority` - (optional) priority **ID** of the card. Define an array of priorities in the [cardShape.priority](../js_kanban_cardshape_config) property. Displayed in the **Priority** field
81+
- `priority` - (optional) priority **ID** of the card. Define an array of priorities in the [`cardShape.priority`](/api/config/js_kanban_cardshape_config) property. Displayed in the **Priority** field
8282
- `css` - (optional) custom CSS styles for the card
8383
- `votes` - (optional) array of user IDs who voted
8484
- `comments` - (optional) array of comment objects with:
@@ -87,10 +87,10 @@ Each card can include the following parameters:
8787
- `cardId` - (required) card **ID** the comment belongs to
8888
- `text` - (optional) comment text, which can include HTML markup
8989
- `date` - (optional) Date object representing when the comment was posted (not updated after edits)
90-
- `custom_key` - (optional) any custom key for the card. This can be used to position the card within columns or rows, see the [columnKey](../js_kanban_columnkey_config) and [rowKey](../js_kanban_rowkey_config) properties
90+
- `custom_key` - (optional) any custom key for the card. This can be used to position the card within columns or rows, see the [`columnKey`](/api/config/js_kanban_columnkey_config) and [`rowKey`](/api/config/js_kanban_rowkey_config) properties
9191

9292
:::info
93-
To load new card data dynamically, the [**parse()**](../../methods/js_kanban_parse_method) method can be used.
93+
To load new card data dynamically, the [`parse()`](/api/methods/js_kanban_parse_method) method can be used.
9494
:::
9595

9696
### Example
@@ -148,6 +148,6 @@ new kanban.Kanban("#root", {
148148

149149
**Related articles:**
150150
- [Working with data](/guides/working_with_data)
151-
- [updateCard()](/api/methods/js_kanban_updatecard_method.md)
151+
- [updateCard()](/api/methods/js_kanban_updatecard_method)
152152

153153
**Related sample:** [Kanban. Styling cards](https://snippet.dhtmlx.com/qu6rpktk?tag=kanban)

docs/api/config/js_kanban_cardshape_config.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ items: ({ card, store }) => {
160160
Setting `maxCount` controls how many assigned users appear on the card. Setting it to `false` displays all assigned users.
161161
162162
:::info
163-
The **_users_** field is off by default. To enable it, set `show` to `true` and provide user data in `values`. To assign users via the editor, configure the appropriate control in [`editorShape`](/api/config/js_kanban_editorshape_config.md#--parameters-for-combo-select-and-multiselect-types). Use **_select_** for single user or **_multiselect_** for multiple users.
163+
The **_users_** field is off by default. To enable it, set `show` to `true` and provide user data in `values`. To assign users via the editor, configure the appropriate control in [`editorShape`](/api/config/js_kanban_editorshape_config/#--parameters-for-combo-select-and-multiselect-types). Use **_select_** for single user or **_multiselect_** for multiple users.
164164
165165
```jsx {}
166166
cardShape: {
@@ -188,7 +188,7 @@ The **_users_** field is off by default. To enable it, set `show` to `true` and
188188
- `clickable` - (optional) if `true`, users can vote by clicking the icon on the card; otherwise, voting is only possible via the editor
189189
- `css` - function returning a CSS class to conditionally style cards
190190
- `headerFields` - (optional) array of objects defining **custom fields**
191-
- `key` - (required) custom field key, used when configuring the editor via [editorShape](../js_kanban_editorshape_config)
191+
- `key` - (required) custom field key, used when configuring the editor via [editorShape](/api/config/js_kanban_editorshape_config)
192192
- `label` - (optional) custom field label
193193
- `css` - (optional) CSS class for the custom field
194194
@@ -317,7 +317,7 @@ new kanban.Kanban("#root", {
317317
- The **_menu.items[0].label_** option was renamed to **_menu.items[0].text_** in v1.4
318318
- The **_users.maxCount_** and **_votes.clickable_** options were added in v1.6
319319
320-
**Related articles:** [Configuration](/guides/configuration#cards)
320+
**Related articles:** [Configuration](/guides/configuration/#cards)
321321
322322
**Related samples:**
323323

docs/api/config/js_kanban_cardtemplate_config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,6 @@ new kanban.Kanban("#root", {
6868

6969
**Change log:** Context menu support was introduced in v1.4
7070

71-
**Related articles:** [Customization](/guides/customization#custom-cards)
71+
**Related articles:** [Customization](/guides/customization/#custom-cards)
7272

7373
**Related sample:** [Kanban. Custom card](https://snippet.dhtmlx.com/8rhdq81d?tag=kanban)

docs/api/config/js_kanban_columns_config.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Each column can be configured using the following properties (data):
5151
~~~
5252

5353
:::info
54-
To update column data dynamically, you can use the [`parse()`](../../methods/js_kanban_parse_method) method.
54+
To update column data dynamically, you can use the [`parse()`](/api/methods/js_kanban_parse_method) method.
5555
:::
5656

5757
### Example
@@ -101,7 +101,7 @@ new kanban.Kanban("#root", {
101101

102102
**Related article:**
103103
- [Working with data](/guides/working_with_data)
104-
- [updateColumn()](/api/methods/js_kanban_updatecolumn_method.md)
104+
- [updateColumn()](/api/methods/js_kanban_updatecolumn_method)
105105

106106
**Related samples:**
107107
- [Kanban. Limits for columns and swimlanes](https://snippet.dhtmlx.com/2blo6hx8?tag=kanban)

docs/api/config/js_kanban_currentuser_config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ description: You can learn about the currentUser config in the documentation of
1111
@short: Optional. Represents the ID of the current user
1212

1313
:::note
14-
The current user ID should match one of the IDs listed in the [`cardShape.users`](/api/config/js_kanban_cardshape_config.md) property. If this ID isn't provided, comments will be accessible only in read-only mode.
14+
The current user ID should match one of the IDs listed in the [`cardShape.users`](/api/config/js_kanban_cardshape_config) property. If this ID isn't provided, comments will be accessible only in read-only mode.
1515
:::
1616

1717
### Usage

docs/api/config/js_kanban_editorautosave_config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ description: You can learn about the editorAutoSave config in the documentation
99
<h1 style = {{color: "red"}}><s>editorAutoSave</s></h1>
1010

1111
:::danger
12-
Starting with version 1.3, the `editorAutoSave` property is **deprecated**. To control the "autosave" mode, please use the [`editor`](/api/config/js_kanban_editor_config.md) property instead.
12+
Starting with version 1.3, the `editorAutoSave` property is **deprecated**. To control the "autosave" mode, please use the [`editor`](/api/config/js_kanban_editor_config) property instead.
1313
:::
1414

1515
### Description

docs/api/config/js_kanban_editorshape_config.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ The editor appearance and features can be customized by setting the following pa
157157
Supported field types in the Kanban editor are: **dateRange**, **date**, **combo**, **select**, **multiselect**, **color**, **text**, **textarea**, **progress**, **files**, **comments**, and **links**.
158158
:::
159159

160-
- `key` - (required) the key for the editor field. This should match the value set in the [`cardShape`](../js_kanban_cardshape_config) property. Example:
160+
- `key` - (required) the key for the editor field. This should match the value set in the [`cardShape`](/api/config/js_kanban_cardshape_config) property. Example:
161161

162162
~~~js {8,17}
163163
// card appearance settings
@@ -190,7 +190,7 @@ Supported field types in the Kanban editor are: **dateRange**, **date**, **combo
190190
- `end` - (required) key for the end date
191191

192192
:::important
193-
These keys correspond to those used in the [`cardShape`](../js_kanban_cardshape_config) property.
193+
These keys correspond to those used in the [`cardShape`](/api/config/js_kanban_cardshape_config) property.
194194
:::
195195

196196
- `config` - (optional) configuration object for the **"dateRange"** field with the following options:
@@ -468,4 +468,4 @@ new kanban.Kanban("#root", {
468468
- Added the ***dateRange*** type in v1.3
469469
- Added the ***comments*** and ***links*** editor types, along with ***format*** parameters in v1.4
470470

471-
**Related articles:** [Configuration](/guides/configuration#editor)
471+
**Related articles:** [Configuration](/guides/configuration/#editor)

docs/api/config/js_kanban_history_config.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The `history` property lets you turn history management on or off for Kanban. Se
1515
:::
1616

1717
:::tip
18-
It's also possible to exclude certain operations from the Kanban history by using the [`$meta`](/api/common/js_kanban_meta_parameter.md) parameter with methods and events!
18+
It's also possible to exclude certain operations from the Kanban history by using the [`$meta`](/api/common/js_kanban_meta_parameter) parameter with methods and events!
1919
:::
2020

2121
### Usage
@@ -43,4 +43,4 @@ new kanban.Kanban("#root", {
4343

4444
**Change log:** This property was introduced in version 1.3
4545

46-
**Related articles:** [`undo()`](/api/methods/js_kanban_undo_method.md) and [`redo()`](/api/methods/js_kanban_redo_method.md)
46+
**Related articles:** [`undo()`](/api/methods/js_kanban_undo_method) and [`redo()`](/api/methods/js_kanban_redo_method)

0 commit comments

Comments
 (0)