Wiki source code of XWiki Select Widget

Version 11.1 by Guillaume Delhumeau on 2016/01/21

Hide last authors
Guillaume Delhumeau 1.1 1 = Summary =
Guillaume Delhumeau 3.1 2
Guillaume Delhumeau 10.1 3 This widget have the same objective than a regular select box, but with a nice style and with parameters like icons, descriptions, etc...
Guillaume Delhumeau 1.1 4
Guillaume Delhumeau 11.1 5 {{info}}
6 This widget is available since XWiki 7.2.
7 {{/info}}
8
Guillaume Delhumeau 1.1 9 This is an example of use:
10
Guillaume Delhumeau 3.1 11 {{image reference="xwiki-select.png"/}}
Guillaume Delhumeau 1.1 12
Guillaume Delhumeau 9.1 13 Note that this component needs JavaScript enabled in the browser.
14
Guillaume Delhumeau 1.1 15 = How to use =
Guillaume Delhumeau 3.1 16
Guillaume Delhumeau 4.1 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.
Guillaume Delhumeau 1.1 18
Guillaume Delhumeau 4.1 19 You just need to call the ###xwikiSelect()## macro with the following parameters:
Guillaume Delhumeau 1.1 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)
Guillaume Delhumeau 4.1 24 * //firstIsDefaultIfDefaultNull//: either if //defaultValue// is null, select the first option or not
Guillaume Delhumeau 11.1 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
Guillaume Delhumeau 1.1 27
28 = Example of use =
Guillaume Delhumeau 3.1 29
Guillaume Delhumeau 5.1 30 {{code language="plain"}}
Guillaume Delhumeau 1.1 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}}
Guillaume Delhumeau 7.1 48
49 Generates:
50
51 {{image reference="example.png"/}}
Guillaume Delhumeau 8.1 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.
Guillaume Delhumeau 11.1 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}}
122

Get Connected