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