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