File: ConditionalPage.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 (30 lines) | stat: -rw-r--r-- 427 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
28
29
30
HeaderFooter : HeaderFooter {
	title = "Conditional";
}

ConditionalTrue : CKConditional {
	condition = isShow;
	negate    = false;
}

ConditionalFalse : CKConditional {
	condition = isShow;
	negate    = true;
}

Form : CKForm {
}

ShowInspect : CKSubmitButton {
	action = showInspect;
	value = "Show Inspect";
}

HideInspect : CKSubmitButton {
	action = hideInspect;
	value = "Hide Inspect";
}

Inspect : CKAmritaElement {
}