Hi everyone!
I am trying to save the data that a user types into a xform. I want to have it in a separate xml file, because i need to process it afterwards. This is my xform so far:
<html xmlns=" xmlns:xforms=" <head>
<title>Lindenmayer Fractals</title>
<xforms:model>
<xforms:instance xmlns="">
<data>
<Axioma/>
<Rules/>
<Headings/>
<Rotation/>
</data>
</xforms:instance>
</xforms:model>
</head>
<body>
<xforms:input ref="Axioma">
<xforms:label>Initial Axiom: </xforms:label>
</xforms:input>
<br/><br/>
<xforms:input ref="Rules">
<xforms:label>Transformation Rules: </xforms:label>
</xforms:input>
<br/><br/>
<xforms:input ref="Headings">
<xforms:label>Initial Heading (degrees) </xforms:label>
</xforms:input>
<br/><br/>
<xforms:input ref="Rotation">
<xforms:label>Rotation Unit (degrees) </xforms:label>
</xforms:input>
</body>
</html>
Thanks![Smile :) :)](data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)
I am trying to save the data that a user types into a xform. I want to have it in a separate xml file, because i need to process it afterwards. This is my xform so far:
<html xmlns=" xmlns:xforms=" <head>
<title>Lindenmayer Fractals</title>
<xforms:model>
<xforms:instance xmlns="">
<data>
<Axioma/>
<Rules/>
<Headings/>
<Rotation/>
</data>
</xforms:instance>
</xforms:model>
</head>
<body>
<xforms:input ref="Axioma">
<xforms:label>Initial Axiom: </xforms:label>
</xforms:input>
<br/><br/>
<xforms:input ref="Rules">
<xforms:label>Transformation Rules: </xforms:label>
</xforms:input>
<br/><br/>
<xforms:input ref="Headings">
<xforms:label>Initial Heading (degrees) </xforms:label>
</xforms:input>
<br/><br/>
<xforms:input ref="Rotation">
<xforms:label>Rotation Unit (degrees) </xforms:label>
</xforms:input>
</body>
</html>
Thanks