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/configuration.md
+46-5Lines changed: 46 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ The board of Kanban consists of the *cards* distributed into *columns* and *rows
38
38
:::
39
39
40
40
- a start date via the `start_date: boolean` config
41
-
-a end date via the `end_date: boolean` config
41
+
-an end date via the `end_date: boolean` config
42
42
43
43
:::tip
44
44
You can manage the **start date** and **end date** fields of any card via the corresponding controls of the Kanban editor. If you activate these fields, the corresponding controls will be displayed in the editor automatically. To configure these controls, you can use the [**date**](#date-and-daterange-types) type.
@@ -59,7 +59,8 @@ The board of Kanban consists of the *cards* distributed into *columns* and *rows
59
59
60
60
- a card cover (*preview image*) via the `cover: boolean` config
61
61
- a card comment(s) via the `comments: boolean` config
62
-
- a card assignment (users) via the `users: { show: boolean, limit: number, showLimit: boolean, values: object }` config
62
+
- a card vote(s) via the `votes: { show: boolean, clicable: true }` config
63
+
- a card assignment (users) via the `users: { show: boolean, values: object, maxCount: number }` config
63
64
64
65
:::tip
65
66
You can assign one or several users to any card via the corresponding control of the Kanban editor. To configure the control for assigning a single user, use the [**combo** or **select**](#combo-select-and-multiselect-types) types of editor. To assign multiple users, use the [**multiselect**](#combo-select-and-multiselect-types) type.
@@ -125,7 +126,11 @@ Unless you specify the card settings via the [`cardShape`](api/config/js_kanban_
125
126
126
127
## Editor
127
128
128
-
The *Editor* of Kanban consists of the fields for managing the cards data. To configure the editor fields (controls), you can use the [`editorShape`](api/config/js_kanban_editorshape_config.md) property. You can use the following types of the editor fields:
129
+
:::info
130
+
You can display the Editor as the **sidebar** or **modal window** using the [`editor.placement`](api/config/js_kanban_editor_config.md) property!
131
+
:::
132
+
133
+
The *Editor* of Kanban consists of the fields for managing the cards data. To configure the editor fields (controls), you can use the [`editorShape`](api/config/js_kanban_editorshape_config.md) property. You can use the following types of editor fields:
129
134
130
135
-[**combo**, **select**, and **multiselect**](#combo-select-and-multiselect-types)
131
136
-[**color**](#color-type)
@@ -508,11 +513,47 @@ const board = new kanban.Kanban("#root", {...});
0 commit comments