X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/c930e9176a5a85509c5b0230e2bff5c22a591432..92c2b89db26be16707f4a805d3303ab2531006e1:/docs/output/Ext.XTemplate.html?ds=inline diff --git a/docs/output/Ext.XTemplate.html b/docs/output/Ext.XTemplate.html index 02b9f951..5903e7e9 100644 --- a/docs/output/Ext.XTemplate.html +++ b/docs/output/Ext.XTemplate.html @@ -1,9 +1,53 @@ -
Template XTemplate
Package: | Ext |
Defined In: | XTemplate.js |
Class: | XTemplate |
Extends: | Template |
A template class that supports advanced functionality like autofilling arrays, conditional processing with -basic comparison operators, sub-templates, basic math function support, special built-in template variables, -inline code execution and more. XTemplate also provides the templating mechanism built into Ext.DataView.
-XTemplate supports many special tags and built-in operators that aren't defined as part of the API, but are -supported in the templates that can be created. The following examples demonstrate all of the supported features. -This is the data object used for reference in each code example:
+Template XTemplate
Package: | Ext |
Defined In: | XTemplate.js |
Class: | XTemplate |
Extends: | Template |
A template class that supports advanced functionality like:
XTemplate provides the templating mechanism built into:
For example usage see the constructor.
Config Options | Defined By | |
---|---|---|
compiled : Boolean Specify true to compile the template
+immediately (see compile ).
+Defaults to false. | Template | |
disableFormats : Boolean Specify true to disable format
+functions in the template. If the template does not contain
+format functions, settin... Specify true to disable format
+functions in the template. If the template does not contain
+format functions, setting disableFormats
+to true will reduce apply time. Defaults to false.
+
+For a list of available format functions, see Ext.util.Format. | Template | |
re : RegExp The regular expression used to match template variables.
+Defaults to:re : /\{([\w-]+)\}/g ... The regular expression used to match template variables.
+Defaults to:
| Template |
Method | Defined By | ||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
XTemplate( Mixed config )
+ The Ext.Template constructor describes
+the acceptable parameters to pass to the constructor. The following
+examples d... The Ext.Template constructor describes
+the acceptable parameters to pass to the constructor. The following
+examples demonstrate all of the supported features.
+
|