From http://www.w3schools.com (Copyright Refsnes Data)
| « Previous | Next Chapter » |
The XForms model defines a template for the data to be collected from a form.
The purpose of an HTML form is to collect data. XForms has the same purpose.
With XForms, input data is described in two different parts:
The XForms model describes the data.
The XForms model defines a data model inside a model element:
|
<model> <instance> <person> <fname/> <lname/> </person> </instance> <submission id="form1" action="submit.asp" method="get"/> </model> |
In the example above, the XForms model uses an instance element to define the XML-template for the data to be collected, and a submission element to describe how to submit the data.
Note: The XForms model does not say anything about the visual part of the form (the user interface).
If you are missing the XForms namespace in these examples, or if you don't know what a namespace is, it will be introduced in the next chapter.
The instance element defines the data to be collected.
XForms is always collecting data for an XML document. The instance element in the XForms model defines the XML document.
In the example above the "data instance" (the XML document) the form is collecting data for looks like this:
|
<person> <fname/> <lname/> </person> |
After collecting the data, the XML document might look like this:
|
<person> <fname>John</fname> <lname>Smith</lname> </person> |
The submission element describes how to submit the data.
The submission element defines a form and how it should be submitted.
In the example above, the id="form1" identifies a form, the action="submit.asp" defines the URL to where the form should be submitted, and the method="get" attribute defines the method to use when submitting the form data.
The XForms user interface defines the input fields and how they should be displayed.
The user interface elements are called controls (or input controls):
|
<input ref="fname"><label>First Name</label></input> <input ref="lname"><label>Last Name</label></input> <submit submission="form1"><label>Submit</label></submit> |
In the example above the two <input> elements define two input fields. The ref="fname" and ref="lname" attributes point to the <fname> and <lname> elements in the XForms model.
The <submit> element has a submission="form1" attribute which refers to the <submission> element in the XForms model. A submit element is usually displayed as a button.
Notice the <label> elements in the example. With XForms every input control element has a required <label> element.
XForms is not designed to work alone. There is no such thing as an XForms document.
XForms has to run inside another XML document. It could run inside XHTML 1.0, and it will run inside XHTML 2.0.
If we put it all together, the document will look like this:
|
<xforms> <model> <instance> <person> <fname/> <lname/> </person> </instance> <submission id="form1" action="submit.asp" method="get"/> </model> <input ref="fname"><label>First Name</label></input> <input ref="lname"><label>Last Name</label></input> <submit submission="form1"><label>Submit</label></submit> </xforms> |
And the page will display pretty much like this:
An XForms Processor built into the browser will be responsible for submitting the XForms data to a target.
The data can be submitted as XML and could look something like this:
|
<person> <fname>Hege</fname> <lname>Refsnes</lname> </person> |
Or it can be submitted as text, looking something like this:
| fname=Hege;lname=Refsnes |
| « Previous | Next Chapter » |
From http://www.w3schools.com (Copyright Refsnes Data)