File: TextFieldPage.ckd

package info (click to toggle)
amrita 1.0.2-8
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 1,884 kB
  • ctags: 1,362
  • sloc: ruby: 9,159; xml: 978; makefile: 110
file content (27 lines) | stat: -rw-r--r-- 305 bytes parent folder | download | duplicates (4)
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
HeaderFooter : HeaderFooter {
	title = "TextField";
}

Form : CKForm {
}

Submit : CKSubmitButton {
}

TextField : CKTextField {
	value = value1;
}

Password : CKTextField {
	type = "password";
	value = value2;
}

Hidden : CKTextField {
	type = "hidden";
	value = value3;
}

Result : CKAmritaElement {
}