Upgrade to ExtJS 3.2.1 - Released 04/27/2010
[extjs.git] / docs / output / Ext.XTemplate.html
index 56e5a64..8118972 100644 (file)
@@ -32,7 +32,7 @@ to true will reduce <code><a href="output/Ext.Template.html#Ext.Template-apply"
     {
         compiled: true,      <i>// <a href="output/Ext.Template.html#Ext.Template-compile" ext:member="compile" ext:cls="Ext.Template">compile</a> immediately</i>
         disableFormats: true <i>// reduce <code><a href="output/Ext.Template.html#Ext.Template-apply" ext:member="apply" ext:cls="Ext.Template">apply</a></i></code> time since no formatting
-    }    
+    }
 );
 </code></pre>
 For a list of available format functions, see <a href="output/Ext.util.Format.html" ext:cls="Ext.util.Format">Ext.util.Format</a>.</div></div></td><td class="msource"><a href="output/Ext.Template.html#disableFormats" ext:member="#disableFormats" ext:cls="Ext.Template">Template</a></td></tr><tr class="config-row expandable inherited"><td class="micon"><a href="#expand" class="exi">&nbsp;</a></td><td class="sig"><a id="Ext.Template-re"></a><b><a href="source/Template.html#cfg-Ext.Template-re">re</a></b> : RegExp<div class="mdesc"><div class="short">The regular expression used to match template variables.
@@ -45,7 +45,7 @@ examples d...</div><div class="long">The <a href="output/Ext.Template.html#Ext.T
 the acceptable parameters to pass to the constructor. The following
 examples demonstrate all of the supported features.</p>
 <div class="mdetail-params"><ul>
-<li><b><u>Sample Data</u></b> 
+<li><b><u>Sample Data</u></b>
 <div class="sub-desc">
 <p>This is the data object used for reference in each code example:</p>
 <pre><code><b>var</b> data = {
@@ -71,7 +71,7 @@ examples demonstrate all of the supported features.</p>
 };</code></pre>
 </div>
 </li>
-<li><b><u>Auto filling of arrays</u></b> 
+<li><b><u>Auto filling of arrays</u></b>
 <div class="sub-desc">
 <p>The <b><tt>tpl</tt></b> tag and the <b><tt>for</tt></b> operator are used
 to process the provided data object:
@@ -132,7 +132,7 @@ you can access the parent object's members via the <b><tt>parent</tt></b> object
 tpl.overwrite(panel.body, data);</code></pre>
 </div>
 </li>
-<li><b><u>Conditional processing with basic comparison operators</u></b> 
+<li><b><u>Conditional processing with basic comparison operators</u></b>
 <div class="sub-desc">
 <p>The <b><tt>tpl</tt></b> tag and the <b><tt>if</tt></b> operator are used
 to provide conditional checks for deciding whether or not to render specific
@@ -163,7 +163,7 @@ Using the sample data above:
 tpl.overwrite(panel.body, data);</code></pre>
 </div>
 </li>
-<li><b><u>Basic math support</u></b> 
+<li><b><u>Basic math support</u></b>
 <div class="sub-desc">
 <p>The following basic math operators may be applied directly on numeric
 data values:</p><pre>
@@ -184,7 +184,7 @@ For example:
 tpl.overwrite(panel.body, data);</code></pre>
 </div>
 </li>
-<li><b><u>Execute arbitrary inline code with special built-in template variables</u></b> 
+<li><b><u>Execute arbitrary inline code with special built-in template variables</u></b>
 <div class="sub-desc">
 <p>Anything between <code>{[ ... ]}</code> is considered code to be executed
 in the scope of the template. There are some special variables available in that code:
@@ -213,7 +213,7 @@ This example demonstrates basic row striping using an inline code block and the
 tpl.overwrite(panel.body, data);</code></pre>
 </div>
 </li>
-<li><b><u>Template member functions</u></b> 
+<li><b><u>Template member functions</u></b>
 <div class="sub-desc">
 <p>One or more member functions can be specified in a configuration
 object passed into the XTemplate constructor for more complex processing:</p>