File: basic.yml

package info (click to toggle)
libhtml-formfu-model-dbic-perl 2.03-2.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,148 kB
  • sloc: perl: 1,429; makefile: 2
file content (58 lines) | stat: -rw-r--r-- 794 bytes parent folder | download | duplicates (3)
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
---
auto_fieldset: 1

elements:
  - type: Hidden
    name: id

  - type: Text
    name: text_col

  - type: Password
    name: password_col

  - type: Checkbox
    name: checkbox_col
    value: foo

  - type: Select
    name: select_col
    options:
      - [1, one]
      - [2, two]
      - [3, three]

  - type: ComboBox
    name: combobox_col
    options:
      - [1, one]
      - [2, two]
      - [3, three]

  - type: Radio
    name: radio_col
    value: yes

  - type: Radio
    name: radio_col
    value: no

  - type: Radiogroup
    name: radiogroup_col
    values: [1, 2, 3]

  - type: Checkboxgroup
    name: array_col
    options:
      - [one]
      - [two]
      - [three]

  - type: Text
    name: date_col

  - type: Text
    name: unknown_col

  - type: Submit
    name: submit