<?xml-stylesheet href="../forms/xsltforms/xsltforms.xsl" type="text/xsl"?>
<?xsltforms-options debug="no"?>
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:h="http://www.w3.org/1999/xhtml"
      xmlns:xf="http://www.w3.org/2002/xforms"
      xmlns:ev="http://www.w3.org/2001/xml-events"
      xmlns:xsd="http://www.w3.org/2001/XMLSchema"
>
<head>
   <title>Integer</title>
   <style type="text/css">
      body { font-family: sans-serif}
      .block {display: block}
   </style> 

   <model id="m" xmlns="http://www.w3.org/2002/xforms">
      <instance>
         <data xmlns="">
	    <min>1</min><max>11</max>
	 </data>
      </instance>
   </model>
</head>
<body>
   <group xmlns="http://www.w3.org/2002/xforms">
      <input class="block" ref="min"><label>Min:</label></input>
      <input class="block" ref="max"><label>Max:</label></input>
      <trigger class="block" >
	 <label>Default</label>
	 <action ev:event="DOMActivate">
	    <setvalue ref="min" value="0"/>
	    <setvalue ref="max" value="100"/>
	 </action>
      </trigger>
   </group>
</body>
</html>
