Wiki source code of XWikiSelect

Version 8.1 by Guillaume Delhumeau on 2015/09/08

Show last authors
1 = Summary =
2
3 The XWiki select component is a widget that have the same objective than a regular select box, but styled nicely and with parameters like icons, descriptions, etc...
4
5 This is an example of use:
6
7 {{image reference="xwiki-select.png"/}}
8
9 = How to use =
10
11 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.
12
13 You just need to call the ###xwikiSelect()## macro with the following parameters:
14
15 * //fieldName//: name of the input field
16 * //options//: an array of maps describing a category of options, which contains an array of options (see example)
17 * //defaultValue//: the default value to use (could be null)
18 * //firstIsDefaultIfDefaultNull//: either if //defaultValue// is null, select the first option or not
19 * //cssClass//: class to add to the div (could be '##xwiki-select-small##', '##xwiki-select-medium##', '##xwiki-select-tall##' or any other class)
20
21 = Example of use =
22
23 {{code language="plain"}}
24 #set($options = [
25 {
26 'name': 'Category 1',
27 'options': [
28 { 'name': 'Option 1', 'value': 'option1', 'description': 'Description of the option 1', 'icon': 'wiki', 'data': {'some-data': 'some-value'}},
29 { 'name': 'Option 2', 'value': 'option2', 'description': 'Description of the option 2', 'icon': 'page'}
30 ]
31 },
32 {
33 'name': 'Category 2',
34 'options': [
35 { 'name': 'Option 3', 'value': 'option3', 'description': 'Description of the option 3', 'icon': 'check'}
36 ]
37 }
38 ])
39 #xwikiSelect('nameOfTheField', $options, 'option1', false, 'xwiki-select-small')
40 {{/code}}
41
42 Generates:
43
44 {{image reference="example.png"/}}
45
46 The generated HTML code is:
47
48 {{code language="html"}}
49 <div class="xwiki-select xwiki-select-small">
50 <div class="xwiki-select-options">
51 <ul>
52 <li>Category 1 (2)
53
54 <ul>
55 <li class="xwiki-select-option xwiki-select-option-selected">
56 <input checked="checked" data-some-data="some-value" id="nameOfTheField_0" name="nameOfTheField" type="radio" value="option1"/>
57 <span class="xwiki-select-option-icon"><span class="fa fa-globe"></span></span>
58
59 <div>
60 <label for="nameOfTheField_0">Option 1</label>
61 <p class="xHint">Description of the option 1</p>
62 </div>
63 </li>
64
65 <li class="xwiki-select-option">
66 <input id="nameOfTheField_1" name="nameOfTheField" type="radio" value="option2"/>
67 <span class="xwiki-select-option-icon"><span class="fa fa-file"></span></span>
68
69 <div>
70 <label for="nameOfTheField_1">Option 2</label>
71 <p class="xHint">Description of the option 2</p>
72 </div>
73 </li>
74 </ul>
75
76 </li>
77
78 <li>Category 2 (1)
79
80 <ul>
81 <li class="xwiki-select-option">
82 <input id="nameOfTheField_2" name="nameOfTheField" type="radio" value="option3"/>
83 <span class="xwiki-select-option-icon"><span class="fa fa-check"></span></span>
84
85 <div>
86 <label for="nameOfTheField_2">Option 3</label>
87 <p class="xHint">Description of the option 3</p>
88 </div>
89 </li>
90 </ul>
91
92 </li>
93
94 </ul>
95 </div>
96 </div>
97 {{/code}}
98
99 Note the presence of the ##data-some-data## attribute in the first input, as specified in the previous ##$options## variable.

Get Connected