Genie 7110 Garage Door Opener User Manual


 
February 2001 Genie Application Style Guide 61
Forms
11
Mitsubishi Trium Wizard Forms
The guidelines for the Mitsubishi Trium are similar to the Nokia, with the following
exception:
Provide a link following the <input> or <select> element to the next card in the
sequence.
Do not provide a <do> action as well.
Example 11-2
<card id="empdata" title="Database">
<p>
Name (First Last)
<input name="employee" title="First Last"/>
<a href="#empdata1" label="Next">Next</a>
</p>
</card>
<card id="empdata1" title="Database">
<p>
Date of birth (DDMMYYYY)
<input name="dob" title="DDMMYYY" format="NNNNNNNN"/>
<a href="#empdata2" label="Next">Next</a>
</p>
</card>
<card id="empdata2" title="Database">
<p>
Phone extension (4 digits)
<input name="ext" title="Extn. (NNNN)" format="NNNN"/>
<anchor label="Send">Send
<go href="commit.cgi" method="post">
<postfield name="empname" value="$(employee)"/>
<postfield name="dateofbirth" value="$(dob)"/>
<postfield name="phoneext" value="$(ext)"/>
</go>
</anchor>
</p>
</card>
Example 11-2 shows how to create a link labelled Next that will allow users navigate
from one card to the next. Provide an intuitive label for the final link in the sequence
to confirm the action (for example "Buy", "Save", "Send").