<?xml-stylesheet type="text/xsl" href="/xforms-tests/xsltforms/xsltforms.xsl"?>
<html xmlns:my="http://commerce.example.com/payment" xmlns:txs="http://sourceforge.net/projects/txs" xmlns="http://www.w3.org/1999/xhtml" xmlns:req="http://www.agencexml.com/requests" xmlns:xforms="http://www.w3.org/2002/xforms" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  	<head>
    	<title>10.a action syntax example</title>
    	<link rel="stylesheet" href="../driverPages/forms/TestSuite11.css" type="text/css"/>
    	<xforms:model id="thismodel">
       		<xforms:instance xmlns="">
				<car>Del Sol</car>
       		</xforms:instance>
    	</xforms:model>
  	</head>
  	<body>
  		<xforms:group>
	  		<xforms:label class="title">10.a action syntax example</xforms:label>
	  	</xforms:group>
  		<xforms:group>
  			<xforms:label>
  			  If you change the value in the Car Model 
  			  input control and activate the Reset trigger the value must be set back to the initial value of 
  			  "Del Sol". 
  			</xforms:label>
  		</xforms:group>

		<xforms:input ref="/car">
			<xforms:label>Car Model : </xforms:label>
		</xforms:input>
			
		<xforms:trigger>
  			<xforms:label>Reset</xforms:label>
  			<xforms:reset ev:event="DOMActivate" model="thismodel"/>
		</xforms:trigger>

		
  </body>
</html>
