Wiki source code of Meetings
Last modified by Andrey Che on 2018/12/10 14:09
Hide last authors
1.1 | 1 | {{velocity}} | |
2 | #set ($discard = $xwiki.ssfx.use('uicomponents/widgets/userpicker/userPicker.css')) | ||
3 | #set ($discard = $xwiki.ssfx.use('uicomponents/pagination/pagination.css', 'true')) | ||
4 | #set ($columnsProperties = { | ||
5 | 'doc.title': {"type":"text","size":10,"link":"view"}, | ||
6 | 'leader': {"type":"text","size":10,"html":true}, | ||
7 | 'place': {"type":"text","size":10}, | ||
8 | 'startDate': {"type":"text","size":10}, | ||
9 | 'durationString': {"type":"text","filterable":true,"sortable":false,"html":true}, | ||
10 | 'status': {"type":"list","size":10}, | ||
11 | '_actions': {"sortable":false,"filterable":false,"html":true,"actions":["delete", "edit"]} | ||
12 | }) | ||
13 | #set ($options = { | ||
14 | 'className': 'Meeting.MeetingClass', | ||
15 | 'translationPrefix': 'meeting.livetable.', | ||
16 | 'tagCloud': true, | ||
17 | 'rowCount': 15, | ||
18 | 'maxPages': 10, | ||
19 | 'selectedColumn': 'doc.title', | ||
20 | 'defaultOrder': 'asc' | ||
21 | }) | ||
22 | #set ($columns = ['doc.title', 'leader', 'place', 'startDate', 'durationString', 'status', '_actions']) | ||
23 | #livetable('meeting' $columns $columnsProperties $options) | ||
24 | {{/velocity}} |