Wiki source code of Icon Picker Macro
Last modified by Sebastian Marsching on 2025/06/24 10:38
Hide last authors
author | version | line-number | content |
---|---|---|---|
![]() |
1.1 | 1 | = Usage = |
2 | {{code}} | ||
3 | {{iconPicker id="" class="" prefix="" /}} | ||
4 | {{/code}} | ||
5 | |||
6 | **Where:** | ||
7 | |=id (optional)|DOM id of the input field where the picker will apply | ||
8 | |=class (optional)|CSS class of inputs where the picker will apply | ||
9 | |=prefix (optional)|Prefix to add before the name of the icon in the input field (default: "{{{image:icon:}}}") | ||
10 | == Live example == | ||
11 | {{code}} | ||
12 | {{html}} | ||
![]() |
10.1 | 13 | <p><label>Field 1: <input type="text" id="myPicker" /></label></p> |
14 | <p><label>Field 2: <input type="text" class="fieldWithPicker" /></label></p> | ||
![]() |
1.1 | 15 | {{/html}} |
16 | |||
17 | {{iconPicker id="myPicker" class="fieldWithPicker" prefix="icon:" /}} | ||
18 | {{/code}} | ||
19 | == Play with it == | ||
20 | {{html}} | ||
![]() |
10.1 | 21 | <p><label>Field 1: <input type="text" id="myPicker" /></label></p> |
22 | <p><label>Field 2: <input type="text" class="fieldWithPicker" /></label></p> | ||
![]() |
1.1 | 23 | {{/html}} |
24 | |||
25 | {{iconPicker id="myPicker" class="fieldWithPicker" prefix="icon:" /}} |