Hello,
I have created a form with TWO Pages. The Original xform which is stored in mysql Database is give below
Xform Original (From Database)
<model>
<instance id="dc_emp_v1">
<dc_emp_v1 name="emp_v1" id="24" formKey="dc_emp_v1">
<question1/>
<question2/>
<question3/>
<question4/>
</dc_emp_v1>
</instance>
<bind id="question1" nodeset="/dc_emp_v1/question1" type="xsd:string"/>
<bind id="question2" nodeset="/dc_emp_v1/question2" type="xsd:string"/>
<bind id="question3" nodeset="/dc_emp_v1/question3" type="xsd:string"/>
<bind id="question4" nodeset="/dc_emp_v1/question4" type="xsd:string"/>
</model>
<group id="1">
<label>Page1</label>
<input bind="question1">
<label>Question1</label>
</input>
<input bind="question2">
<label>Question2</label>
</input>
<input bind="question3">
<label>Question3</label>
</input>
</group>
<group id="2">
<label>Page2</label>
<input bind="question4">
<label>Question4</label>
</input>
</group>
</xforms>
When i download the form from ODK collect
Final xml data is looks like
Why the group element is missing in the above generated file ??
Can anyone tell me the reason.
Thanks
Subramaniyam.KMV