Hi Alain !!!

Here in this mail i have attached my sample form , Pls check weather it is 
opening or not in your system

thanks and regards 
Rajamani M
NIC
Gov of India

On 04/12/12, Alain Couthures  <[email protected]> wrote:
> 
>   
> 
> 
>  Hi Raja,
>  
>  Samples are OK for me when opened directly with IE9 without any local web 
> server.
>  
>  Could you please check with another PC? Did you clear the cache?
>  
>  Thank you for your feedbacks!
>  
>  -Alain
>  
>  Le 12/04/2012 09:45, Raja a écrit : 
> 
> > Hi Alain and XSLTForms members !!
> >  
> >  Today we explored the latest XSLTForms version-537 with IE-9 by samples 
> > given in the bundle. Here we found an error there is no one sample working 
> > with IE-9. Its shows an error " Unable to get value of the property clone 
> > node objects is null or undefined " . Can you suggest some workaround or 
> > solutions to solve this above mentioned problem ....
> >  
> >  Ps : Here we accessing the samples through off-line mode not through some 
> > web container .. Great solutions are appreciated . 
> >  
> >  
> >  thanks and regards 
> >  
> >  --
> >  Rajamani Marimuthu
> >  Junior Research Fellow-JRF
> >  NIC -Open Technology Centre
> >  Rajaji Bhavan
> >  Besant Nagar,
> >  Chennai - 90
> >  Cell : 9677192096 
> >   
> >  
> > ------------------------------------------------------------------------------
> > For Developers, A Lot Can Happen In A Second.
> > Boundary is the first to Know...and Tell You.
> > Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
> > http://p.sf.net/sfu/Boundary-d2dvs2
> >  
> >   
> >  
> > _______________________________________________
> > Xsltforms-support mailing list
> > [email protected]
> > https://lists.sourceforge.net/lists/listinfo/xsltforms-support 
> >  
>  
> 
>  
> 
> 
--
Rajamani Marimuthu
Junior Research Fellow-JRF
NIC -Open Technology Centre
Rajaji Bhavan
Besant Nagar,
Chennai - 90
Cell : 9677192096
<?xml-stylesheet href="xsltforms/xsltforms.xsl" type="text/xsl"?>
<!--<?xsltforms-options debug="yes"?>-->
<html  xmlns="http://www.w3.org/1999/xhtml";
       xmlns:xf="http://www.w3.org/2002/xforms";
       xmlns:xs="http://www.w3.org/2001/XMLSchema"; 
       xmlns:ev="http://www.w3.org/2001/xml-events";
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
       xmlns:ftype="http://www.example.com/my-file-types";>
       
   <head>
      <title>Form</title>
      <link rel="stylesheet" type="text/css"/>
      <style>
      
	  @page {size:8.5in 11in;margin:2cm;}

	  body{color: #000000;font-size:11pt;font-family:Nimbus Roman No9L; line-height: 20px;background-color:gray;margin-right:2cm;margin-left:2cm;}

	  .xforms-label.heading{ font-size:12pt;font-weight:bold;text-align:center;text-decoration:underline;}
	  
	  .xforms-select1 .xforms-item {display:inline}
	  
	  .xforms-input .xforms-value {width:1.5in;}
	  	  
	  .xforms-textarea .xforms-value {width:1.5in;}

	  div.wholeform
		  {
		  margin:1em; 
		  border: solid thin #603479;
		  width:11in;
		  height:auto;
		  background-color:white;
		  }

	  div.main1
		  {
		  margin-left:0.75in;
		  margin-right:1.5in; 
		  width:9.5in;
		  height:auto;
		  background-color:#ffcccc;
		  padding-top:15pt;
		  }
      </style>


      <xf:model id="model1">
         <xf:instance id="details" xmlns="" >
	    <user xmlns="">
		<name/>
		<address/>
		<status/>
		<tax paid="">
		    <arrears paid=""/>
		    <appeal/>
		</tax>
		<experience det="">
		    <details/>
		</experience>
		<posses status="">
		    <details/>
		</posses>
		<licence no="">
		    <details/>
		</licence>
		<survey/>
		<owner doc="">
		</owner>
		<lease doc="">
		</lease>
		<video_lib needs="">
		    <details/>
		</video_lib>
		<other_places/>
		<population/>
		<need/>
		<area_place/>
		<place_usage/>
		<age/>	
		<enclosures>
		   <noc xsi:type="xsd:base64Binary"/>
		   <latest_tax xsi:type="xsd:base64Binary"/>
		   <rent_agree xsi:type="xsd:base64Binary"/>
		   <latest_rent xsi:type="xsd:base64Binary"/>
		</enclosures>	
	    </user>
         </xf:instance>
         
         <xs:schema
	      xmlns:xs="http://www.w3.org/2001/XMLSchema";
	      xmlns:ftype="http://www.example.com/my-file-types";
	      targetNamespace="http://www.example.com/my-file-types";
	      elementFormDefault="qualified" attributeFormDefault="unqualified">

	      <xs:element name="details">
		  <xs:complexType>
		    <xs:sequence>
		      <xs:element name="name" type="ftype:nameinType" />
		    </xs:sequence>
		  </xs:complexType>
	      </xs:element>
	      
	      <xs:simpleType name="nameinType">
		  <xs:restriction base="xs:string">
		      <xs:pattern value="[A-Za-z]+"/>
		  </xs:restriction>
	      </xs:simpleType>
	      
	 </xs:schema>
         
         <xf:bind nodeset="instance('details')/name" type="ftype:nameinType" required="true()"/>  
         <xf:bind nodeset="instance('details')/address" required="true()"/> 
         <xf:bind nodeset="instance('details')/status" required="true()"/> 
         <xf:bind nodeset="instance('details')/survey" required="true()"/> 
         <xf:bind nodeset="instance('details')/tax/appeal" relevant="instance('details')/tax/arrears/@paid='yes'"/>  
         <xf:bind nodeset="instance('details')/experience/details" relevant="instance('details')/experience/@det='yes'"/>
         <xf:bind nodeset="instance('details')/posses/details" relevant="instance('details')/posses/@status='yes'"/>
         <xf:bind nodeset="instance('details')/licence/details" relevant="instance('details')/licence/@no='yes'"/>
         <xf:bind nodeset="instance('details')/video_lib/details" relevant="instance('details')/video_lib/@needs='yes'"/>
	 <xf:bind nodeset="instance('details')/other_places" required="true()"/>
	 <xf:bind nodeset="instance('details')/population" required="true()"/>
	 <xf:bind nodeset="instance('details')/need" required="true()"/>
	 <xf:bind nodeset="instance('details')/area_place" required="true()"/>
	 <xf:bind nodeset="instance('details')/place_usage" required="true()"/>
         <xf:bind nodeset="instance('details')/age" type="xs:date"/>
                  	
	<xf:submission id="save" method="put" ref="instance('details')" resource="file://result.xml">
		<xf:message level="modal" ev:event="xforms-submit"> Data Save in Progress....pls wait...</xf:message>
		<xf:message level="modal" ev:event="xforms-submit-done"> Your Data Saved successfully !!!</xf:message>
		<xf:message level="modal" ev:event="xforms-submit-error"> Error!</xf:message>
	</xf:submission>
      </xf:model>
   </head>
   
   <body>
      <div class="wholeform">
      <div class="main1">
	    <center><h2>TAMILNADU EXHIBITION OF FILMS ON T.V.SCREEN THROUGH VIDEO CASSETTE <br/> 
	    RECORDER (REGULATION)RULES,1984</h2></center><br/>
	    
	    <table>
	    <tr>
		<td><xf:label>1. Full name of the Applicant: </xf:label></td>
		<td>
		    <xf:input ref="instance('details')/name">		  
		    </xf:input>
		</td>
            </tr><br/>
            
            
            <tr>
		<td><xf:label>2. Address of the Applicant (Residential): </xf:label></td>
		<td>
		    <xf:textarea ref="instance('details')/address">
		    </xf:textarea>
		</td>
            </tr><br/>
            
            
            <tr>
		<td><xf:label>3. Give details of your status: </xf:label></td>
		<td>
		    <xf:input ref="instance('details')/status">
		    </xf:input>
		</td>
	    </tr><br/>
	    
            <tr>
		<td><xf:label>4 a) Have you been regularly paying taxes <br/>and other dues,payable by you to the State Government </xf:label></td>
		<td>
		    <xf:select1 ref="instance('details')/tax/@paid" appearance="full">		    
			<xf:item>
				<xf:label>Yes</xf:label>
				<xf:value>yes</xf:value>
			</xf:item>
			<xf:item>
				<xf:label>No</xf:label>
				<xf:value>no</xf:value>
			</xf:item>
		    </xf:select1>
		</td>
	    </tr><br/>
	    
	    <tr>
		<td><xf:label>b) Are you in arrears in respect of any such tax or dues</xf:label></td>
		<td>
		    <xf:select1 ref="instance('details')/tax/arrears/@paid" appearance="full">
			    <xf:item>
				    <xf:label>Yes</xf:label>
				    <xf:value>yes</xf:value>
			    </xf:item>
			    <xf:item>
				    <xf:label>No</xf:label>
				    <xf:value>no</xf:value>
			    </xf:item>
		    </xf:select1>
		 </td>
	    </tr>
	    
	    <tr>		 
		 <td><xf:label>c) If so,is the matter under appeal or otherwise under consideration of the authorities </xf:label></td>
		 <td>
		    <xf:input ref="instance('details')/tax/appeal">
		    </xf:input>
		 </td>
	    </tr><br/>
            
            <tr>
		<td><xf:label>5. Have you any previous experience in the line of keep a <br/> video library,if so,give full details</xf:label></td>
		<td>
		    <xf:select1 ref="instance('details')/experience/@det" appearance="full">		    
			    <xf:item>
				    <xf:label>Yes</xf:label>
				    <xf:value>yes</xf:value>
			    </xf:item>
			    <xf:item>
				    <xf:label>No</xf:label>
				    <xf:value>no</xf:value>
			    </xf:item>
		    </xf:select1>
		</td>
	    </tr><br/>
	    
	    <tr>
		<td></td>
		<td>
		    <xf:textarea ref="instance('details')/experience/details">
		    </xf:textarea>
		</td>
            </tr><br/>
            
            <tr>
		    <td>
			<xf:label>6. Do you possessed before any place licenced under the Tamilnadu Exhibition<br/>
			of Filims and Television Screen Through Video Cassette Records (Regulation)<br/>
			Ordinance 1984,If so,give full details of the places and the periods</xf:label> 
		    </td>
		    
		    <td>            
			<xf:select1 ref="instance('details')/posses/@status" appearance="full">
				<xf:item>
					<xf:label>Yes</xf:label>
					<xf:value>yes</xf:value>
				</xf:item>
				<xf:item>
					<xf:label>No</xf:label>
					<xf:value>no</xf:value>
				</xf:item>
			</xf:select1>
		    </td>
	      </tr>
	      
	      <tr>
		  <td></td>
		  <td>
		      <xf:input ref="instance('details')/posses/details">
		      </xf:input>
		  </td>
	      </tr><br/>    
	      
	      <tr>		 
		 <td><xf:label>7. Have you included all the Survey Number which are required <br/> for a direct access to the Public Road(Survey Number to be mentioned) </xf:label></td>
		 <td>
			<xf:select1 ref="instance('details')/licence/@no" appearance="full">
				<xf:item>
					<xf:label>Yes</xf:label>
					<xf:value>yes</xf:value>
				</xf:item>
				<xf:item>
					<xf:label>No</xf:label>
					<xf:value>no</xf:value>
				</xf:item>
			</xf:select1>
		 </td>
	      </tr>
	      
	      <tr>
		  <td></td>
		  <td>	      
		      <xf:input ref="instance('details')/licence/details">
		      </xf:input>
		  </td>
	      </tr><br/> 
	      
	      <tr>
		    <td>
			<xf:label>8. Details of the building for which you require the licence <br/> 
				  (Survey Number or Numbers,Village,Taluk,District)<br/>
				  Door No,Street etc., also to be stated </xf:label> 
		    </td>

		    <td>
			<xf:textarea ref="instance('details')/survey">
			</xf:textarea>
		    </td>
	      </tr><br/> 
	      
	      
	       <tr>
		    <td>
			<xf:label>9. Do you own the building.If so attach documents relating to ownership alongwith true copies</xf:label>  
		    </td>
		    
		    <td>            
			<xf:select1 ref="instance('details')/owner/@doc" appearance="full">
				<xf:item>
					<xf:label>Yes</xf:label>
					<xf:value>yes</xf:value>
				</xf:item>
				<xf:item>
					<xf:label>No</xf:label>
					<xf:value>no</xf:value>
				</xf:item>
			</xf:select1>
		    </td>
	      </tr><br/>
	      
	      
	      <tr>
		  <td>
		      <xf:label>10. Have you taken the building on lease.If so,attach the lease deed with a true <br/> and also copies of the records to prove the ownership of the lessor</xf:label>
		  </td>
		  
		  <td>            
		      <xf:select1 ref="instance('details')/lease/@doc" appearance="full">
			      <xf:item>
				      <xf:label>Yes</xf:label>
				      <xf:value>yes</xf:value>
			      </xf:item>
			      <xf:item>
				      <xf:label>No</xf:label>
				      <xf:value>no</xf:value>
			      </xf:item>
		      </xf:select1>
		  </td>
	      </tr><br/>
	      
	      
	      <tr>
		  <td>
		      <xf:label>11. Is your video library likely to serve the needs of a particular locality.If so,how ?</xf:label>
		  </td>
		  
		  <td>            
		      <xf:select1 ref="instance('details')/video_lib/@needs" appearance="full">
			      <xf:item>
				      <xf:label>Yes</xf:label>
				      <xf:value>yes</xf:value>
			      </xf:item>
			      <xf:item>
				      <xf:label>No</xf:label>
				      <xf:value>no</xf:value>
			      </xf:item>
		      </xf:select1>
		  </td>
	      </tr>
	      
	      <tr>
		  <td></td>
		  <td>
		      <xf:input ref="instance('details')/video_lib/details">
		      </xf:input>
		  </td>
	      </tr><br/>   
	      
	      <tr>		 
		 <td><xf:label>12. What are the other places licenced for keeping video library <br/> in the locality say around 8 KMs from the site: </xf:label></td>
		 <td>
		    <xf:input ref="instance('details')/other_places">
		    </xf:input>
		 </td>
	      </tr><br/>
	      
	      <tr>		 
		 <td><xf:label>13. What is the approximate population of the locality,<br/> say around 8 KMs from the site: </xf:label></td>
		 <td>
		    <xf:input ref="instance('details')/population">
		    </xf:input>
		 </td>
	      </tr><br/>
	      
	      <tr>		 
		 <td><xf:label>14. Considering the number of places already licenced in locality, <br/> is there any need for another video library: </xf:label></td>
		 <td>
		    <xf:input ref="instance('details')/need">
		    </xf:input>
		 </td>
	      </tr><br/>
	      
	      <tr>		 
		 <td><xf:label>15. Area of place in square metres (of the proposed video library) <br/>materials of which the roof,side walls,gallery stair case are made: </xf:label></td>
		 <td>
		    <xf:input ref="instance('details')/area_place">
		    </xf:input>
		 </td>
	      </tr><br/>
	      
	      <tr>		 
		 <td><xf:label>16. Whether the place or building is to be used during the <br/>day/night/day and night (working hours): </xf:label></td>
		 <td>
		    <xf:input ref="instance('details')/place_usage">
		    </xf:input>
		 </td>
	      </tr><br/>
	      
	      <tr>		 
		 <td><xf:label>17. Age and date of birth of the applicant </xf:label></td>
		 <td>
		    <xf:input ref="instance('details')/age">
		    </xf:input>
		 </td>
	      </tr> <br/><p> Certified that all the above particulars are true to the best of my knowledge and belief.</p><br/>

		<table>  
		  <b>Enclosures:</b><br/>
		     <tr>
			<td>1. Application 3 copies to be submitted</td>
		     </tr>
		     
		     <tr>
			<td>2. One rupee court fee stamp to be affixed on the application</td>
		     </tr>
		     
		     <tr>
			<td>3. NOC from the house owner</td>
			<td>
			    <xf:upload ref="instance('details')/enclosures/noc" mediatype="image/*" incremental="true">
			    </xf:upload>			
			</td>
		     </tr>
		     
		     <tr>
			<td>4. Latest Corporation Tax receipt issed by the Corporation authorities for the proposed video library</td>
			<td>
			    <xf:upload ref="instance('details')/enclosures/latest_tax" mediatype="image/*" incremental="true">
			    </xf:upload>			
			</td>
		     </tr>
		     
		     <tr>
			<td>5. Rental agreement with the house owner for 11 months</td>
			<td>
			    <xf:upload ref="instance('details')/enclosures/rent_agree" mediatype="image/*" incremental="true">
			    </xf:upload>			
			</td>
		     </tr>
		     
		     <tr>
			<td>6. Latest Rent Receipt issued by the house owner</td>
			<td>
			    <xf:upload ref="instance('details')/enclosures/latest_rent" mediatype="image/*" incremental="true">
			    </xf:upload>			
			</td>
		     </tr>
		</table><br/>

	      <center>
		    <xf:submit submission="save" appearance="full">
			<xf:label>SAVE</xf:label>									
		    </xf:submit>
	      </center>
	    
	    </table>
	    
	</div>
	</div>
   </body>
</html>
------------------------------------------------------------------------------
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
_______________________________________________
Xsltforms-support mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/xsltforms-support

Reply via email to