{
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"> </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.
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 = {
};</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:
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
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>
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:
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>