Intermec 6400 User Guide

Page of 116
Chapter 2 — Developing and Testing Your Application
22
Data Collection Browser User’s Guide
Notes:
If you have a scrollable table and links are disabled, F5 is hard-coded to 
scroll to the previous section of the table and F6 is hard-coded to scroll to 
the next screen. You must add HTML tags to your web page to provide this 
information for your user.
The width of a column in a table is the size of the largest cell in the column. 
This includes the <TH> tag.
Column data is flattened to a single row. That is, data does not wrap within 
a column cell. The cell width is widened to accommodate the data.
Rows are automatically wrapped.
Using the break tag <BR> in a table tag has no effect.
Example:
<FORM METHOD=GET ACTION=”/rfmain.asp”>
1998 Player Roster
<BR>
<TABLE BORDER SCROLLABLE=8>
<TR><TD ALIGN=LEFT>QB<TD>Moon
<EM><TR><TD ALIGN=LEFT>QB<TD>McNair
<TR><TD ALIGN=LEFT>RB<TD>Bettis
<TR><TD ALIGN=LEFT>RB<TD>Bennett
<TR><TD ALIGN=LEFT>WR<TD>Thigpen
<TR><TD ALIGN=LEFT>WR<TD>Johnson
<TR><TD ALIGN=LEFT>TE<TD>Sharpe
<TR><TD ALIGN=LEFT>K<TD>Stoyanovich
<TR><TD ALIGN=LEFT>D<TD>Giants
<TR><TD ALIGN=LEFT>WR<TD>Reed
<TR><TD ALIGN=LEFT>RB<TD>Dunn
<TR><TD ALIGN=LEFT>RB<TD>Levens
<TR><TD ALIGN=LEFT>WR<TD>Calloway
<TR><TD ALIGN=LEFT>TE<TD>Drayton
<TR><TD ALIGN=LEFT>K<TD>Hollis
</TABLE>
<BR>
<INPUT TYPE="hidden" NAME="FormName" VALUE="Football">
<INPUT TYPE="hidden" NAME="NextForm" VALUE="rfmain.asp">
</FORM>