Wiki source code of XWiki Select Widget

Version 12.1 by Guillaume Delhumeau on 2016/01/21

Show last authors
1 = Summary =
2
3 This widget have the same objective than a regular select box, but with a nice style and with parameters like icons, descriptions, etc...
4
5 {{info}}
6 This widget is available since XWiki 7.2.
7 {{/info}}
8
9 This is an example of use:
10
11 {{image reference="xwiki-select.png"/}}
12
13 Note that this component needs JavaScript enabled in the browser.
14
15 = How to use =
16
17 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.
18
19 You just need to call the ###xwikiSelect()## macro with the following parameters:
20
21 * //fieldName//: name of the input field
22 * //options//: an array of maps describing a category of options, which contains an array of options (see example)
23 * //defaultValue//: the default value to use (could be null)
24 * //firstIsDefaultIfDefaultNull//: either if //defaultValue// is null, select the first option or not
25 * //cssClass//: (optional) class to add to the div (could be '##xwiki-select-small##', '##xwiki-select-medium##', '##xwiki-select-tall##' or any other class)
26 * //id//: {{info}}Since 7.4.1{{/info}} (optional) id to give to the widget
27
28 = Example of use =
29
30 {{code language="plain"}}
31 #set($options = [
32 {
33 'name': 'Category 1',
34 'options': [
35 { 'name': 'Option 1', 'value': 'option1', 'description': 'Description of the option 1', 'icon': 'wiki', 'data': {'some-data': 'some-value'}},
36 { 'name': 'Option 2', 'value': 'option2', 'description': 'Description of the option 2', 'icon': 'page'}
37 ]
38 },
39 {
40 'name': 'Category 2',
41 'options': [
42 { 'name': 'Option 3', 'value': 'option3', 'description': 'Description of the option 3', 'icon': 'check'}
43 ]
44 }
45 ])
46 #xwikiSelect('nameOfTheField', $options, 'option1', false, 'xwiki-select-small')
47 {{/code}}
48
49 Generates:
50
51 {{image reference="example.png"/}}
52
53 The generated HTML code is:
54
55 {{code language="html"}}
56 <div class="xwiki-select xwiki-select-small">
57 <div class="xwiki-select-options">
58 <ul>
59 <li>Category 1 (2)
60
61 <ul>
62 <li class="xwiki-select-option xwiki-select-option-selected">
63 <input checked="checked" data-some-data="some-value" id="nameOfTheField_0" name="nameOfTheField" type="radio" value="option1"/>
64 <span class="xwiki-select-option-icon"><span class="fa fa-globe"></span></span>
65
66 <div>
67 <label for="nameOfTheField_0">Option 1</label>
68 <p class="xHint">Description of the option 1</p>
69 </div>
70 </li>
71
72 <li class="xwiki-select-option">
73 <input id="nameOfTheField_1" name="nameOfTheField" type="radio" value="option2"/>
74 <span class="xwiki-select-option-icon"><span class="fa fa-file"></span></span>
75
76 <div>
77 <label for="nameOfTheField_1">Option 2</label>
78 <p class="xHint">Description of the option 2</p>
79 </div>
80 </li>
81 </ul>
82
83 </li>
84
85 <li>Category 2 (1)
86
87 <ul>
88 <li class="xwiki-select-option">
89 <input id="nameOfTheField_2" name="nameOfTheField" type="radio" value="option3"/>
90 <span class="xwiki-select-option-icon"><span class="fa fa-check"></span></span>
91
92 <div>
93 <label for="nameOfTheField_2">Option 3</label>
94 <p class="xHint">Description of the option 3</p>
95 </div>
96 </li>
97 </ul>
98
99 </li>
100
101 </ul>
102 </div>
103 </div>
104 {{/code}}
105
106 Note the presence of the ##data-some-data## attribute in the first input, as specified in the previous ##$options## variable.
107
108 = JavaScript API =
109
110 When an XWiki Select Widget is used on the page, you can control it thanks to a jQuery plugin.
111
112 Example of use:
113
114 {{code language="javascript"}}
115 require(['jquery'], function ($) {
116 // Get the current selected item:
117 $('#myXWikiSelectWidth').xwikiSelectWidget('getValue');
118 // Clear the selection of the widget:
119 $('#myXWikiSelectWidth').xwikiSelectWidget('clearSelection');
120 });
121 {{/code}}

Get Connected