The user interface of XForms uses XForms controls.
The user interface elements in XForms are called XForms Controls.
The most commonly used control elements are <input> and <submit>.
Each control element has a ref attribute pointing back to the XForms data model.
It is important to know that the XForms user interface does not describe exactly how to display the XForms controls.
Because XForms is platform and device independent, XForms leaves it up to the browser to decide how to display the controls.
This way XForms can be used for all types of devices, personal computers, cell phones, hand held computers and much more. XForms is also the perfect solution for defining user interfaces for people with disabilities.
The input control is the most common XForms control. It can hold one line of text:
Most often the input control will display as an input field, like this:
First Name:
The <label> element is a mandatory child element for all XForms input controls.
The reason for this is to secure that the form can be used for all types of devices (because labels can be treated in different ways). For voice software the label has to be spoken, and for some hand held computers the label has to follow the input, screen by screen.
The secret control is designed to input passwords or other hidden information:
Most often the secret control will display as an input field like this:
Password:
The textarea control is used for multi-line input:
The textarea control might display as an input field like this:
Message:
The submit control is used to submit the data:
The trigger control is used to trigger an action:
The output control is used to display XForms data.
The example below will simply output Content of the <fname> and <lname> node in the XForms XML document (XForms instance):
The upload control is designed for uploading files to a server:
Your Query was successfully sent!