<?xml version="1.0" encoding="UTF-8"?>
<wiki>
  <body>&lt;h2&gt;Installation into your project&lt;/h2&gt;
&lt;p&gt;As usual, you will have to copy the javascript, images and css files into your project directory.&lt;/p&gt;
&lt;p&gt;&lt;ul&gt;&lt;br /&gt;
		&lt;li&gt;&lt;a href=&quot;http://github.com/neyric/inputex/downloads&quot; target=&quot;_new&quot;&gt;Download&lt;/a&gt; the latest inputEx zip file&lt;/li&gt;&lt;br /&gt;
		&lt;li&gt;Copy the &lt;i&gt;js,css,images&lt;/i&gt; directories into your project corresponding directories&lt;/li&gt;&lt;/p&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;/p&gt;
&lt;h3&gt;Add inputEx to your page&lt;/h3&gt;
&lt;p&gt;3 ways of doing this :&lt;/p&gt;
&lt;p&gt;&lt;ul&gt;&lt;br /&gt;
		&lt;li&gt;Using the &lt;span class=&quot;caps&quot;&gt;YUI&lt;/span&gt; loader, include the inputEx loader (see &lt;a href=&quot;../../examples/yuiloader.html&quot;&gt;Using &lt;span class=&quot;caps&quot;&gt;YUI&lt;/span&gt; loader&lt;/a&gt; for requesting modules)&lt;br /&gt;
			&lt;pre&gt;&lt;code&gt;
&amp;lt;!-- YUI loader--&amp;gt;	
&amp;lt;script src=&quot;http://yui.yahooapis.com/2.7.0/build/yuiloader/yuiloader-min.js&quot;&amp;gt;&amp;lt;/script&amp;gt; 
&amp;lt;!-- inputEx loader --&amp;gt;
&amp;lt;script src=&quot;../js/inputex-loader.js&quot;&amp;gt;&amp;lt;/script&amp;gt;
			&lt;/code&gt;&lt;/pre&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;p&gt;&lt;li&gt;Insert the script and &lt;span class=&quot;caps&quot;&gt;CSS&lt;/span&gt; into your page : (inputEx+YUI)&lt;br /&gt;
			&lt;pre&gt;&lt;code&gt;
&amp;lt;!-- YUI utilities --&amp;gt;
&amp;lt;script src=&quot;http://yui.yahooapis.com/2.7.0/build/utilities/utilities.js&quot; type=&quot;text/javascript&quot;&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;http://yui.yahooapis.com/2.7.0/build/reset-fonts/reset-fonts.css&quot; /&amp;gt;
&amp;lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;http://yui.yahooapis.com/2.7.0/build/assets/skins/sam/skin.css&quot; /&amp;gt;
... and other yui dependencies...&lt;/p&gt;
&lt;p&gt;&lt;!-- inputEx --&gt;&lt;br /&gt;
&lt;link  href=&quot;inputex/css/inputEx.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot; /&gt;&lt;br /&gt;
&lt;script src=&quot;inputex/js/inputex.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;&lt;br /&gt;
&lt;script src=&quot;inputex/js/Field.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;&lt;br /&gt;
&lt;script src=&quot;inputex/js/Group.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;&lt;br /&gt;
&lt;script src=&quot;inputex/js/Form.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;&lt;br /&gt;
&lt;script src=&quot;inputex/js/fields/StringField.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;&lt;br /&gt;
&lt;script src=&quot;inputex/js/fields/CheckBox.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;&lt;br /&gt;
&amp;#8230; and the other fields you need &amp;#8230;				&lt;br /&gt;
			&lt;/code&gt;&lt;/pre&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;p&gt;&lt;li&gt;Use the minified files :&lt;br /&gt;
			&lt;pre&gt;&lt;code&gt;
&amp;lt;!-- YUI utilities --&amp;gt;
&amp;lt;script src=&quot;http://yui.yahooapis.com/2.7.0/build/utilities/utilities.js&quot; type=&quot;text/javascript&quot;&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;http://yui.yahooapis.com/2.7.0/build/reset-fonts/reset-fonts.css&quot; /&amp;gt;
&amp;lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;http://yui.yahooapis.com/2.7.0/build/assets/skins/sam/skin.css&quot; /&amp;gt;
... and other yui dependencies...&lt;/p&gt;
&lt;p&gt;&lt;!-- inputEx minified files --&gt;&lt;br /&gt;
&lt;script src=&quot;inputex/build/inputex-min.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;&lt;br /&gt;
&lt;link  href=&quot;inputex/build/inputex-min.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot; /&gt;				&lt;br /&gt;
			&lt;/code&gt;&lt;/pre&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;h3. Basic example&lt;/p&gt;
&lt;ul&gt;
		&lt;li&gt;Create a &lt;span class=&quot;caps&quot;&gt;DOM&lt;/span&gt; element that will contain your form: &lt;br /&gt;
			&lt;pre&gt;&lt;code&gt;
&amp;lt;div id='myFormContainer'&amp;gt;&lt;/div&gt;
&lt;p&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/p&gt;
&lt;/li&gt;
		&lt;li&gt;Create a basic form after loading:&lt;br /&gt;
			&lt;pre&gt;&lt;code&gt;
YAHOO.util.Event.addListener(window, &quot;load&quot;, function(){
   new inputEx.Form({
      parentEl: 'myFormContainer',
      fields: [],
      buttons: []
   });
});
			&lt;/code&gt;&lt;/pre&gt;		&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;&lt;/p&gt;</body>
  <created-at type="datetime">2009-11-25T20:55:29-08:00</created-at>
  <id type="integer">192479</id>
  <permalink>getting-started</permalink>
  <repository-id type="integer">108752</repository-id>
  <title>Getting Started</title>
  <updated-at type="datetime">2009-04-21T05:50:42-07:00</updated-at>
  <user-id type="integer">39354</user-id>
</wiki>
