User manual - Web_Browser_Prog_Guide

NAURTECH WEB BROWSER SMART CLIENTS FOR WINDOWS CE .NET / POCKET PC
Web Browser Programming Guide Page 25
Syntax
http-equiv="IDA"
content="IDA_symbolicname"
Comments
This tag offers rich functionality. It is used primarily when an action is needed
upon loading a page. Alternatively, an “onload” handler can be used in the
BODY element to perform actions via JavaScript.
A list of IDA Action Codes and their description can be found in the Appendix.
All IDA symbolic names must be in upper case.
Any number of IDA meta tags may be specified on a single page. They are
acted upon sequentially when parsed.
Example
<html>
<head>
<meta http-equiv="IDA" content="IDA_SIP_SHOW">
</head>
<body>
The Soft Input Panel (SIP) should be visible.
</body>
</html>
3.10 MOVESIP
The MoveSIP tag is used to reposition the Soft Input Panel (SIP). MoveSIP is
not recommended for hiding the SIP off-screen. Use the SIP lockdown features
within CETerm to prevent the SIP from popping up when not wanted.
Syntax
http-equiv="MoveSIP"
content="x=n"
"y=m"
Where x and y are the screen coordinates with (0,0) in the upper left corner of
the screen and x increasing to the right and y increasing downward.
Comments