Wiki source code of XWiki Select Widget
Version 20.1 by Guillaume Delhumeau on 2016/10/26
Show last authors
author | version | line-number | content |
---|---|---|---|
1 | {{toc/}} | ||
2 | |||
3 | = Summary = | ||
4 | |||
5 | This widget have the same objective than a regular select box, but with a nice style and with parameters like icons, descriptions, etc... | ||
6 | |||
7 | {{info}} | ||
8 | This widget is available since XWiki 7.2. and requires JavaScript enabled in the browser. | ||
9 | {{/info}} | ||
10 | |||
11 | This is an example of use: | ||
12 | |||
13 | {{image reference="xwiki-select.png"/}} | ||
14 | |||
15 | Since 8.4-rc-1, we could also have a filter input: | ||
16 | |||
17 | {{image reference="xwiki-select-filter.png"/}} | ||
18 | |||
19 | = How to use = | ||
20 | |||
21 | This component is usable in any Wiki page or Velocity template. For a wiki page, you need to be both inside a ~{~{velocity}} and a ~{~{html}} macros. | ||
22 | |||
23 | You just need to call the ###xwikiSelect()## macro with the following parameters: | ||
24 | |||
25 | * //fieldName//: name of the input field | ||
26 | * //options//: an array of maps describing a category of options, which contains an array of options (see example) | ||
27 | * //defaultValue//: the default value to use (could be null) | ||
28 | * //firstIsDefaultIfDefaultNull//: either if //defaultValue// is null, select the first option or not | ||
29 | * //cssClass//: (optional) class to add to the div (could be '##xwiki-select-small##', '##xwiki-select-medium##', '##xwiki-select-tall##' or any other class) | ||
30 | * //id//: {{info}}Since 7.4.1{{/info}} (optional) id to give to the widget | ||
31 | |||
32 | = Example of use = | ||
33 | |||
34 | {{code language="plain"}} | ||
35 | #set($options = [ | ||
36 | { | ||
37 | 'name': 'Category 1', | ||
38 | 'options': [ | ||
39 | { 'name': 'Option 1', 'value': 'option1', 'description': 'Description of the option 1', 'icon': 'wiki', 'data': {'some-data': 'some-value'}}, | ||
40 | { 'name': 'Option 2', 'value': 'option2', 'description': 'Description of the option 2', 'icon': 'page'} | ||
41 | ] | ||
42 | }, | ||
43 | { | ||
44 | 'name': 'Category 2', | ||
45 | 'options': [ | ||
46 | { 'name': 'Option 3', 'value': 'option3', 'description': 'Description of the option 3', 'icon': 'check'} | ||
47 | ] | ||
48 | } | ||
49 | ]) | ||
50 | #xwikiSelect('nameOfTheField', $options, 'option1', false, 'xwiki-select-small') | ||
51 | {{/code}} | ||
52 | |||
53 | Generates: | ||
54 | |||
55 | {{image reference="example.png"/}} | ||
56 | |||
57 | The generated HTML code is: | ||
58 | |||
59 | {{code language="html"}} | ||
60 | <div class="xwiki-select xwiki-select-small"> | ||
61 | <div class="xwiki-select-options"> | ||
62 | <ul> | ||
63 | <li>Category 1 (2) | ||
64 | |||
65 | <ul> | ||
66 | <li class="xwiki-select-option xwiki-select-option-selected"> | ||
67 | <input checked="checked" data-some-data="some-value" id="nameOfTheField_0" name="nameOfTheField" type="radio" value="option1"/> | ||
68 | <span class="xwiki-select-option-icon"><span class="fa fa-globe"></span></span> | ||
69 | |||
70 | <div> | ||
71 | <label for="nameOfTheField_0">Option 1</label> | ||
72 | <p class="xHint">Description of the option 1</p> | ||
73 | </div> | ||
74 | </li> | ||
75 | |||
76 | <li class="xwiki-select-option"> | ||
77 | <input id="nameOfTheField_1" name="nameOfTheField" type="radio" value="option2"/> | ||
78 | <span class="xwiki-select-option-icon"><span class="fa fa-file"></span></span> | ||
79 | |||
80 | <div> | ||
81 | <label for="nameOfTheField_1">Option 2</label> | ||
82 | <p class="xHint">Description of the option 2</p> | ||
83 | </div> | ||
84 | </li> | ||
85 | </ul> | ||
86 | |||
87 | </li> | ||
88 | |||
89 | <li>Category 2 (1) | ||
90 | |||
91 | <ul> | ||
92 | <li class="xwiki-select-option"> | ||
93 | <input id="nameOfTheField_2" name="nameOfTheField" type="radio" value="option3"/> | ||
94 | <span class="xwiki-select-option-icon"><span class="fa fa-check"></span></span> | ||
95 | |||
96 | <div> | ||
97 | <label for="nameOfTheField_2">Option 3</label> | ||
98 | <p class="xHint">Description of the option 3</p> | ||
99 | </div> | ||
100 | </li> | ||
101 | </ul> | ||
102 | |||
103 | </li> | ||
104 | |||
105 | </ul> | ||
106 | </div> | ||
107 | </div> | ||
108 | {{/code}} | ||
109 | |||
110 | Note the presence of the ##data-some-data## attribute in the first input, as specified in the previous ##$options## variable. | ||
111 | |||
112 | = JavaScript API = | ||
113 | |||
114 | == Events == | ||
115 | |||
116 | When the selection changed, the event ##xwiki:select:updated## is triggered. | ||
117 | |||
118 | Example of use (using jQuery): | ||
119 | |||
120 | {{code language="javascript"}} | ||
121 | require(['jquery'], function ($) { | ||
122 | // Listen the event triggered when the selection of the widget changes | ||
123 | $('#myWidget').on('xwiki:select:updated', function(event, data) { | ||
124 | // do something... | ||
125 | }); | ||
126 | }); | ||
127 | {{/code}} | ||
128 | |||
129 | See [[DevGuide.JavaScriptAPI]] to have more infos about events handling in XWiki. | ||
130 | |||
131 | == jQuery Plugin {{info}}(Since 7.4.1){{/info}} == | ||
132 | |||
133 | When an XWiki Select Widget is used on the page, you can control it thanks to a jQuery plugin. | ||
134 | |||
135 | Example of use: | ||
136 | |||
137 | {{code language="javascript"}} | ||
138 | require(['jquery'], function ($) { | ||
139 | // Get the current selected item: | ||
140 | var value = $('#myWidget').xwikiSelectWidget('getValue'); | ||
141 | // Clear the selection of the widget: | ||
142 | $('#myWidget').xwikiSelectWidget('clearSelection'); | ||
143 | }); | ||
144 | {{/code}} |