Wiki source code of Books
Version 3.30 by Jip-jan Alunkel on March 28, 22:23
Show last authors
author | version | line-number | content |
---|---|---|---|
1 | {{velocity}} | ||
2 | #set ($discard = $services.localization.use('document', 'cases.Code.translations')) | ||
3 | #set( $discard = $xwiki.ssx.use('cases.WebHome') ) | ||
4 | #set( $discard = $xwiki.jsx.use('cases.WebHome', {'minify' : false}) ) | ||
5 | {{/velocity}} | ||
6 | |||
7 | All about books | ||
8 | |||
9 | {{include reference="assets.macros.form-elements" /}} | ||
10 | |||
11 | {{velocity}} | ||
12 | {{html}} | ||
13 | |||
14 | #createFormStart("homeoworld_form" "case") | ||
15 | |||
16 | #set($locality = { | ||
17 | "id" : "locality", | ||
18 | "type" : "select", | ||
19 | "required" : "yes", | ||
20 | "label" : "Locality of the main complaint", | ||
21 | "aria-label" : "Select the locality", | ||
22 | "data-error-response-type" : "use_label_defined_1", | ||
23 | "data-set-space" : "true", | ||
24 | "placeholder" : "cases.word.locality_select.placeholder", | ||
25 | "space-reference" : "cases", | ||
26 | "help-block" : "In which physiological or psychological epicenter can the main complaint be placed? Select the best fitting option from this list." | ||
27 | }) | ||
28 | |||
29 | #createFormElement($locality) | ||
30 | |||
31 | #set($main_complaint = { | ||
32 | "id" : "main_complaint", | ||
33 | "type" : "text", | ||
34 | "required" : "yes", | ||
35 | "label" : "Main complaint", | ||
36 | "aria-label" : "Enter the main complaint", | ||
37 | "placeholder" : "cases.wordgroup.main_complaint.placeholder", | ||
38 | "data-error-response-type" : "use_label_defined_1", | ||
39 | "data-query-type" : "XWQL.matchTitle", | ||
40 | "data-query-scope" : "cases", | ||
41 | "data-query-list-type" : "suggest-negate", | ||
42 | "data-query-list-contents" : "value", | ||
43 | "data-create-page" : "true", | ||
44 | "help-block" : 'Please be as concise as possible when you describe the main complaint. For example:<br />"chronic headache with bowel complaints,"<br />"intermittend fever" or<br />"diarrhea."' | ||
45 | }) | ||
46 | |||
47 | #createFormElement($main_complaint) | ||
48 | |||
49 | #set($remedy = { | ||
50 | "id" : "remedy", | ||
51 | "type" : "text", | ||
52 | "required" : "yes", | ||
53 | "label" : "Remedy", | ||
54 | "aria-label" : "Choose the remedy", | ||
55 | "placeholder" : "cases.word.remedy.placeholder", | ||
56 | "data-error-response-type" : "use_label_undefined", | ||
57 | "data-query-type" : "JSON.remedies", | ||
58 | "data-query-list-type" : "suggest-select", | ||
59 | "data-query-list-contents" : "value/key", | ||
60 | "data-create-xobj" : "true", | ||
61 | "data-xobj-classname" : "cases.Code.casesClass", | ||
62 | "data-xobj-fieldname" : "remedy", | ||
63 | "help-block" : 'Select the remedy that is central in this case.' | ||
64 | }) | ||
65 | |||
66 | #createFormElement($remedy) | ||
67 | |||
68 | #set($extra_info = { | ||
69 | "id" : "extra_info", | ||
70 | "type" : "checkbox", | ||
71 | "required" : "no", | ||
72 | "label" : "Extra information (optional)", | ||
73 | "value" : "yes" | ||
74 | }) | ||
75 | |||
76 | #createFormElement($extra_info) | ||
77 | |||
78 | #createExpandStart("extra_info" "yes") | ||
79 | |||
80 | Hi there, I am a hungry person. | ||
81 | |||
82 | #createExpandEnd() | ||
83 | |||
84 | #createFormEnd() | ||
85 | |||
86 | {{/html}} | ||
87 | {{/velocity}} |