1 <?xml version="1.0" encoding="utf-8"?>
  2 <page>
  3    <config delay="">
  4       <!--Configuration tags (e.g.: <stylesheet> and <javascript> tags;
  5           can also include PowerPac function tags; etc.)--> 
  6    </config>
  7    
  8    <theFields>
  9       <!--Group of form fields-->
 10       <pgStyleObject>
 11          { theStyle  : 'paddingLeft',
 12            propVals  : '4px' }
 13       </pgStyleObject>
 14       
 15       <pgTBObjSet>
 16          {  myProp : 'text', 
 17             myValue : '',
 18             delay : 0,
 19             parse : true }
 20       </pgTBObjSet>
 21 
 22       <function name="myKeyup" event="keyup" params="evt,undef,target,keyCode,key,shift,ctrl" useTB="true">
 23          <![CDATA[
 24             /* CLIFTON: Using native Toolbook keyboard capture.
 25             ***/
 26             alert(target.name + ": " + evt + "\nkeyCode: " + keyCode + "   key: " + key);
 27          ]]>
 28       </function>
 29       
 30       <function name="myLoad" delay="2000" event="load" params="e" useTB="true">
 31          <![CDATA[
 32             /* CLIFTON: Set focus ...
 33             ***/
 34             tbfunction_pgTBObjSet('myField1', 'focus', true);
 35          ]]>
 36       </function>
 37    </theFields>
 38    
 39    <!--Additional <config#> ... </config#> sections as required.-->
 40      
 41 </page>