Wiki

Clone wiki

javarosa / TrainingForm1

<h:html xmlns="http://www.w3.org/2002/xforms"
        xmlns:h="http://www.w3.org/1999/xhtml"
        xmlns:ev="http://www.w3.org/2001/xml-events"
        xmlns:xsd="http://www.w3.org/2001/XMLSchema"
        xmlns:jr="http://openrosa.org/javarosa">
	<h:head>
		<h:title>Demo Form</h:title>

		<model>
			<instance>
				<!-- the XML inside here is what gets filled out and submitted when you complete the form -->
			</instance>

			<!-- binds allow us to add properties to the questions, like data types, skip logic, etc.
			<bind ... />
			-->
		</model>
	</h:head>

	<h:body>
		<!-- This is where we define the questions that the user will fill out -->
	</h:body>
</h:html>

Updated