 |
1.1 |
1 |
This macro allows to display a Kanban board from AppWithinMinutes data using the [[xwiki:Macros.KanbanMacro]] based on one of the fields of the AWM data. It is also possible to drag and drop items in the board and update the field in the XWiki document. |
|
|
2 |
|
|
|
3 |
Example: |
|
|
4 |
|
|
|
5 |
##{{{ |
|
|
6 |
{{awmkanban app="Help.Applications.Movies" category="databaseList1" columns="staticList1,boolean1" xwql="obj.boolean1=0" /}} |
|
|
7 |
}}}## |
|
|
8 |
|
|
|
9 |
* ##app or className## application or className for which to build the kanban board |
|
|
10 |
* ##category## field to use to break down the kanban board |
|
|
11 |
* ##xwql## additional xwql to restrict the query |
|
|
12 |
* ##title## field to display the title |
|
|
13 |
* ##columns## additional columns to display |
|
|
14 |
|
|
|
15 |
Examples: |
|
|
16 |
|
|
|
17 |
== Kanban of Movies by genre showing the director field == |
|
|
18 |
|
|
|
19 |
{{awmkanban app="Help.Applications.Movies" category="databaseList1" columns="staticList1,boolean1"/}} |
|
|
20 |
|
|
|
21 |
== Kanban of Movies by genre showing the director field only comedy movies == |
|
|
22 |
|
|
|
23 |
{{awmkanban app="Help.Applications.Movies" category="databaseList1" columns="staticList1,boolean1" xwql="obj.boolean1=0"/}} |