summaryrefslogtreecommitdiff
path: root/www/cocoon/files/patch-src-blocks-forms-samples
blob: 6bfa833ed38e81054bc0bdc5a2078cb0f7d7b0e3 (plain)
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
Index: src/blocks/forms/samples/forms/inplace_edit_form.xml
===================================================================
--- src/blocks/forms/samples/forms/inplace_edit_form.xml	(revision 0)
+++ src/blocks/forms/samples/forms/inplace_edit_form.xml	(revision 393475)
@@ -0,0 +1,51 @@
+<?xml version="1.0"?>
+<!--
+  Copyright 1999-2004 The Apache Software Foundation
+
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+
+<!--
+  @version $Id: inplace_edit_form.xml 393475 2006-04-12 14:48:00Z jbq $
+-->
+
+<fd:form xmlns:fd="http://apache.org/cocoon/forms/1.0#definition">
+  <fd:widgets>
+
+	<fd:field id="name">
+	  <fd:datatype base="string"/>
+	  <fd:hint>Your name</fd:hint>
+	</fd:field>
+
+	<fd:field id="occupation">
+	  <fd:initial-value>Cocoon user</fd:initial-value>
+	  <fd:datatype base="string"/>
+	  <fd:hint>Occupation</fd:hint>
+	</fd:field>
+
+	<fd:field id="comments">
+	  <fd:datatype base="string"/>
+	  <fd:hint>Comments</fd:hint>
+	</fd:field>
+	
+	<fd:action id="check">
+	  <fd:label>Check</fd:label>
+	  <fd:hint>Redisplays the page so you can see the various renderings of inplace inputs depending on their values.</fd:hint>
+	</fd:action>
+
+	<fd:submit id="ok">
+	  <fd:label>OK</fd:label>
+	</fd:submit>
+
+  </fd:widgets>
+</fd:form>
\ No newline at end of file
Index: src/blocks/forms/samples/forms/inplace_edit_template.xml
===================================================================
--- src/blocks/forms/samples/forms/inplace_edit_template.xml	(revision 0)
+++ src/blocks/forms/samples/forms/inplace_edit_template.xml	(revision 393475)
@@ -0,0 +1,72 @@
+<?xml version="1.0"?>
+<!--
+  Copyright 1999-2004 The Apache Software Foundation
+
+  Licensed under the Apache License, Version 2.0 (the "License");
+  you may not use this file except in compliance with the License.
+  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<page xmlns:ft="http://apache.org/cocoon/forms/1.0#template"
+      xmlns:fi="http://apache.org/cocoon/forms/1.0#instance"
+      xmlns:jx="http://apache.org/cocoon/templates/jx/1.0">
+
+  <!-- Import the macros that define CForms template elements -->
+  <jx:import uri="resource://org/apache/cocoon/forms/generation/jx-macros.xml"/>
+  <h4 class="samplesGroup">Inline editing</h4>
+  <title>Inline editing</title>
+  <script type="text/javascript">
+     //cocoon.ajax.BrowserUpdater.highlight = cocoon.ajax.Fader.fade;
+  </script>
+  <content>
+    <ft:form-template action="#{$cocoon/continuation/id}.continue" method="POST" ajax="true">
+      <p>The fields below show the various features of in-place editing. "In place" means that inputs are rendered as normal text, and become editable once you click on them.
+	  </p>
+	  <table width="100%" border="1">
+		<tbody>
+		  <tr>
+			<td>
+		      Your name:<br/>
+		      <small>An inplace input with no initial value. The displayed text is
+			         the input's hint</small>
+			</td>
+			<td>
+			  <ft:widget id="name" fi:type="inplace"/>
+			</td>
+		  </tr>
+		  <tr>
+			<td>
+		      Your occupation:<br/>
+		      <small>An inplace input with an initial value.</small>
+			</td>
+			<td>
+			  <ft:widget id="occupation" fi:type="inplace"/>
+			</td>
+		  </tr>
+		  <tr>
+			<td>
+		      Comments:<br/>
+		      <small>An multiline inplace input.</small>
+			</td>
+			<td>
+			  <ft:widget id="comments" fi:type="inplace-area"/>
+			</td>
+		  </tr>
+		</tbody>
+	  </table>
+	  <br/>
+	  <ft:widget id="check"/>
+      <ft:widget id="ok"/>
+      <br/>
+      <a href="./do-inplace.flow">Restart this sample</a> -  <a href="./">Back to Forms samples</a>
+
+    </ft:form-template>
+  </content>
+</page>