Wiki source code of Forms Standards: Inline Layout Usage
Version 2.3 by Ecaterina Moraru (Valica) on 2011/02/07
Hide last authors
author | version | line-number | content |
---|---|---|---|
![]() |
2.3 | 1 | {{velocity}} |
2 | $xwiki.ssx.use("DevGuide.InlineForms") | ||
3 | $xwiki.ssx.use("DevGuide.VerticalForms") | ||
4 | {{/velocity}} | ||
![]() |
1.1 | 5 | |
6 | =Forms Standards: Inline Layout Usage= | ||
7 | |||
8 | {{box cssClass="floatinginfobox" title="**Content**"}} | ||
9 | {{toc/}} | ||
10 | {{/box}} | ||
11 | |||
12 | XWiki Forms (xform / xformInline) are general usage purpose CSS classes, that need to be used in order to have a consistent view of forms across XWiki. | ||
13 | |||
14 | * Forms Layout Type: | ||
15 | ** [[Vertical Layout>>DevGuide.VerticalForms]] (xform): uses a dl-dt-dd structure | ||
16 | ** **Inline Layout** (xformInline) | ||
17 | |||
18 | == A. Usage == | ||
19 | |||
20 | * Obs: The CSS classes have as parent the ##.xformInline## class. This is supposed to be used on the form tag, but if the styling is done inside dynamically generated structures it can be used on other elements, like divs, as long as the element remains the parent for the other form components. | ||
21 | |||
22 | (% summary="Table containg classes for different form components" %) | ||
23 | |= Tag |=Type |=Size |=Classes | | |=Usage\\ | ||
24 | | | | |=Required |=Optional |=Container |\\ | ||
25 | |form | | |##.xformInline##|##.half##, ##.third##| |Container for the form controls\\ | ||
26 | |label | | | | | |Descriptive label for the control\\ | ||
27 | |input | text |size=30 | | | |\\ | ||
28 | |input | password |size=30 | | | |\\ | ||
29 | |select | |size=1 | | | |\\ | ||
30 | |input | submit | |##.button## |##.secondary## |span##.buttonwrapper##|Button controls\\ | ||
31 | |input | button | |##.button## |##.secondary## |span##.buttonwrapper##|Button controls\\ | ||
32 | |a | | |##.button## |##.secondary## |span##.buttonwrapper##|Button controls\\ | ||
33 | |||
34 | == B. Components == | ||
35 | |||
36 | === 1. Labels == | ||
37 | |||
38 | ==== [preview] ==== | ||
39 | |||
40 | [[image:inlineform.png]] | ||
41 | |||
42 | ==== [html] ==== | ||
43 | |||
44 | {{code language="html"}} | ||
45 | <form action="." class="xformInline" method="post" name="form_name1"> | ||
46 | <label for="input_id1">Label</label> | ||
47 | <input id="input_id1" name="input_name1" type="text" value="" size="30"/> | ||
48 | <span class="buttonwrapper"> | ||
49 | <input class="button" type="submit" value="Button"/> | ||
50 | </span> | ||
51 | </form> | ||
52 | {{/code}} | ||
53 | |||
54 | ==== [demo] ==== | ||
55 | |||
56 | {{html clean="false"}} | ||
57 | <form action="." class="xformInline" method="post" name="form_name1"> | ||
58 | <label for="input_id1">Label</label> | ||
59 | <input id="input_id1" name="input_name1" type="text" value=""/> | ||
60 | <span class="buttonwrapper"> | ||
61 | <input class="button" type="submit" value="Button"/> | ||
62 | </span> | ||
63 | </form> | ||
64 | {{/html}} | ||
65 | |||
66 | ==== [css] ==== | ||
67 | |||
68 | {{code language="css"}} | ||
69 | .xformInline label { | ||
70 | color: $theme.textColor; | ||
71 | font-size: .85em; | ||
72 | font-weight: 700; | ||
73 | margin-bottom: .3em; | ||
74 | text-transform: uppercase; | ||
75 | } | ||
76 | {{/code}} |