XML Object Reference
18. May 2006
25
optiPoint application module - XML Applications, Developer’s Guide
c01.fm
TextBox
Syntax
<IppTextBox MaxSize="[Number]" Constraint="ANY|NUMERIC|PASS-
WORD|PHONENUMBER|URL|EMAILADDR" Default="NULL|TEXT|PHONENUMBER"
Key="[Key]">
<Title> </Title>
<Text> </Text>
<Url> </Url>
</IppTextBox>
Child elements
•
Title
Title of the textbox. This is displayed in the system bar.
•
Text
Predefined text contained in the textbox.
•
URL
URL of the server to which the data are sent.
Example
<?xml version="1.0" encoding="UTF-8" ?>
<IppDisplay>
<IppScreen ID="1" HiddenCount="0" CommandCount="1">
<IppTextBox MaxSize="30" Constraint="ANY" Default="TEXT"
Key="TB1">
<Title>Textbox Title</Title>
<Text>add your text here...</Text>
<Url>http://subdomain.domain/path/program</Url>
</IppTextBox>
<IppCommand Type="SELECT" Priority="0">
<Label>Select</Label>
<ScreenID>2</ScreenID>
</IppCommand>
</IppScreen>
</IppDisplay>
>
If the URL is missing or is invalid, thereby allowing no data to be sent to the serv-
er, the current screen will continue to be displayed unchanged.