1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
---
auto_fieldset:
legend: "fieldset"
elements:
- type: Hidden
name: hidden
value: 1
- type: Text
name: foo
label: Foo
- type: Textarea
name: textarea
value: "foo\nbar\n"
- type: Select
name: select
values: [a, b, d]
- type: Select
name: select2
options:
- [1, one]
- group:
- [2, two]
- [3, three]
- type: Multi
elements:
- type: Text
name: multi1
- type: Text
name: multi2
- type: Radiogroup
name: radiogroup
values: [a, b, c]
- type: Radiogroup
name: radiogroup2
options:
- [1, one]
- group:
- [2, two]
- [3, three]
- type: Radio
name: radio
- type: SimpleTable
headers:
- foo
- bar
rows:
-
- type: Text
name: table1
- type: Block
content: foo
-
- type: Text
name: table2
- type: Block
content: bar
- type: Hr
- type: Submit
name: submit
|