<?xml version="1.0" encoding="iso-8859-1"?>
<?xml-stylesheet href="../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}
	label { display: inline-block; width: 6em; margin: 0 1em }
	</style> 

	<xf:model id="m">
	    <xf:instance>
                <data xmlns="">
		      <number/>
	    	</data>
            </xf:instance>
	    <xf:bind nodeset="number" type="xf:integer" />
	</xf:model>
</head>
<body>
	<xf:input incremental="true" ref="number"><xf:label>Number</xf:label>
		<xf:alert>Must be a whole number</xf:alert>
	</xf:input>
</body>
</html>
