/* This file is part of Ext JS 3.4 Copyright (c) 2011-2013 Sencha Inc Contact: http://www.sencha.com/contact GNU General Public License Usage This file may be used under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation and appearing in the file LICENSE included in the packaging of this file. Please review the following information to ensure the GNU General Public License version 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html. If you are unsure which license is appropriate for your use, please contact the sales department at http://www.sencha.com/contact. Build date: 2013-04-03 15:07:25 */ Ext.data.JsonP.Ext_XTemplate({"alternateClassNames":[],"aliases":{},"enum":null,"parentMixins":[],"tagname":"class","subclasses":[],"extends":"Ext.Template","uses":[],"html":"

Hierarchy

Ext.Template
Ext.XTemplate

Files

A template class that supports advanced functionality like:

    \n
  • Autofilling arrays using templates and sub-templates
  • \n
  • Conditional processing with basic comparison operators
  • \n
  • Basic math function support
  • \n
  • Execute arbitrary inline code with special built-in template variables
  • \n
  • Custom member functions
  • \n
  • Many special tags and built-in operators that aren't defined as part of\nthe API, but are supported in the templates that can be created
  • \n

\n\n\n

XTemplate provides the templating mechanism built into:

\n\n\n\n\n

For example usage see the constructor.

\n\n
Defined By

Config options

Specify true to compile the template\nimmediately (see compile). ...

Specify true to compile the template\nimmediately (see compile).\nDefaults to false.

\n
Specify true to disable format\nfunctions in the template. ...

Specify true to disable format\nfunctions in the template. If the template does not contain\nformat functions, setting disableFormats\nto true will reduce apply time. Defaults to false.

\n\n
var t = new Ext.Template(\n    '<div name=\"{id}\">',\n        '<span class=\"{cls}\">{name} {value}</span>',\n    '</div>',\n    {\n        compiled: true,      // compile immediately\n        disableFormats: true // reduce apply time since no formatting\n    }\n);\n
\n\n\n

For a list of available format functions, see Ext.util.Format.

\n

Defaults to: false

The regular expression used to match template variables. ...

The regular expression used to match template variables.\nDefaults to:

\n\n
re : /\\{([\\w\\-]+)\\}/g                                     // for Ext Core\nre : /\\{([\\w\\-]+)(?:\\:([\\w\\.]*)(?:\\((.*?)?\\))?)?\\}/g      // for Ext JS\n
\n\n

Defaults to: /\\{([\\w\\-]+)\\}/g

Defined By

Properties

\n
\n

Methods

Defined By

Instance Methods

Ext.XTemplate
view source
new( config ) : Ext.XTemplate
The Ext.Template constructor describes\nthe acceptable parameters to pass to the constructor. ...

The Ext.Template constructor describes\nthe acceptable parameters to pass to the constructor. The following\nexamples demonstrate all of the supported features.

\n\n
    \n\n
  • Sample Data\n
    \n

    This is the data object used for reference in each code example:

    \n
    var data = {\n    name: 'Jack Slocum',\n    title: 'Lead Developer',\n    company: 'Ext JS, LLC',\n    email: 'jack@extjs.com',\n    address: '4 Red Bulls Drive',\n    city: 'Cleveland',\n    state: 'Ohio',\n    zip: '44102',\n    drinks: ['Red Bull', 'Coffee', 'Water'],\n    kids: [{\n        name: 'Sara Grace',\n        age:3\n    },{\n        name: 'Zachary',\n        age:2\n    },{\n        name: 'John James',\n        age:0\n    }]\n};\n
    \n
    \n
  • \n\n\n
  • Auto filling of arrays\n
    \n

    The tpl tag and the for operator are used\nto process the provided data object:\n

      \n
    • If the value specified in for is an array, it will auto-fill,\nrepeating the template block inside the tpl tag for each item in the\narray.
    • \n
    • If for=\".\" is specified, the data object provided is examined.
    • \n
    • While processing an array, the special variable {#}\nwill provide the current array index + 1 (starts at 1, not 0).
    • \n
    \n

    \n
    <tpl for=\".\">...</tpl>       // loop through array at root node\n<tpl for=\"foo\">...</tpl>     // loop through array at foo node\n<tpl for=\"foo.bar\">...</tpl> // loop through array at foo.bar node\n
    \nUsing the sample data above:\n
    var tpl = new Ext.XTemplate(\n    '<p>Kids: ',\n    '<tpl for=\".\">',       // process the data.kids node\n        '<p>{#}. {name}</p>',  // use current array index to autonumber\n    '</tpl></p>'\n);\ntpl.overwrite(panel.body, data.kids); // pass the kids property of the data object\n
    \n

    An example illustrating how the for property can be leveraged\nto access specified members of the provided data object to populate the template:

    \n
    var tpl = new Ext.XTemplate(\n    '<p>Name: {name}</p>',\n    '<p>Title: {title}</p>',\n    '<p>Company: {company}</p>',\n    '<p>Kids: ',\n    '<tpl for=\"kids\">',     // interrogate the kids property within the data\n        '<p>{name}</p>',\n    '</tpl></p>'\n);\ntpl.overwrite(panel.body, data);  // pass the root node of the data object\n
    \n

    Flat arrays that contain values (and not objects) can be auto-rendered\nusing the special {.} variable inside a loop. This variable\nwill represent the value of the array at the current index:

    \n
    var tpl = new Ext.XTemplate(\n    '<p>{name}\\'s favorite beverages:</p>',\n    '<tpl for=\"drinks\">',\n       '<div> - {.}</div>',\n    '</tpl>'\n);\ntpl.overwrite(panel.body, data);\n
    \n

    When processing a sub-template, for example while looping through a child array,\nyou can access the parent object's members via the parent object:

    \n
    var tpl = new Ext.XTemplate(\n    '<p>Name: {name}</p>',\n    '<p>Kids: ',\n    '<tpl for=\"kids\">',\n        '<tpl if=\"age > 1\">',\n            '<p>{name}</p>',\n            '<p>Dad: {parent.name}</p>',\n        '</tpl>',\n    '</tpl></p>'\n);\ntpl.overwrite(panel.body, data);\n
    \n
    \n
  • \n\n\n
  • Conditional processing with basic comparison operators\n
    \n

    The tpl tag and the if operator are used\nto provide conditional checks for deciding whether or not to render specific\nparts of the template. Notes:

      \n
    • Double quotes must be encoded if used within the conditional
    • \n
    • There is no else operator — if needed, two opposite\nif statements should be used.
    • \n
    \n
    <tpl if=\"age > 1 && age < 10\">Child</tpl>\n<tpl if=\"age >= 10 && age < 18\">Teenager</tpl>\n<tpl if=\"this.isGirl(name)\">...</tpl>\n<tpl if=\"id==\\'download\\'\">...</tpl>\n<tpl if=\"needsIcon\"><img src=\"{icon}\" class=\"{iconCls}\"/></tpl>\n// no good:\n<tpl if=\"name == \"Jack\"\">Hello</tpl>\n// encode " if it is part of the condition, e.g.\n<tpl if=\"name == &quot;Jack&quot;\">Hello</tpl>\n
    \nUsing the sample data above:\n
    var tpl = new Ext.XTemplate(\n    '<p>Name: {name}</p>',\n    '<p>Kids: ',\n    '<tpl for=\"kids\">',\n        '<tpl if=\"age > 1\">',\n            '<p>{name}</p>',\n        '</tpl>',\n    '</tpl></p>'\n);\ntpl.overwrite(panel.body, data);\n
    \n
    \n
  • \n\n\n
  • Basic math support\n
    \n

    The following basic math operators may be applied directly on numeric\ndata values:

    \n
    + - * /\n
    \nFor example:\n
    var tpl = new Ext.XTemplate(\n    '<p>Name: {name}</p>',\n    '<p>Kids: ',\n    '<tpl for=\"kids\">',\n        '<tpl if=\"age &gt; 1\">',  // <-- Note that the > is encoded\n            '<p>{#}: {name}</p>',  // <-- Auto-number each item\n            '<p>In 5 Years: {age+5}</p>',  // <-- Basic math\n            '<p>Dad: {parent.name}</p>',\n        '</tpl>',\n    '</tpl></p>'\n);\ntpl.overwrite(panel.body, data);\n
    \n
    \n
  • \n\n\n
  • Execute arbitrary inline code with special built-in template variables\n
    \n

    Anything between {[ ... ]} is considered code to be executed\nin the scope of the template. There are some special variables available in that code:\n

      \n
    • values: The values in the current scope. If you are using\nscope changing sub-templates, you can change what values is.
    • \n
    • parent: The scope (values) of the ancestor template.
    • \n
    • xindex: If you are in a looping template, the index of the\nloop you are in (1-based).
    • \n
    • xcount: If you are in a looping template, the total length\nof the array you are looping.
    • \n
    • fm: An alias for Ext.util.Format.
    • \n
    \nThis example demonstrates basic row striping using an inline code block and the\nxindex variable:

    \n
    var tpl = new Ext.XTemplate(\n    '<p>Name: {name}</p>',\n    '<p>Company: {[values.company.toUpperCase() + \", \" + values.title]}</p>',\n    '<p>Kids: ',\n    '<tpl for=\"kids\">',\n       '<div class=\"{[xindex % 2 === 0 ? \"even\" : \"odd\"]}\">',\n        '{name}',\n        '</div>',\n    '</tpl></p>'\n);\ntpl.overwrite(panel.body, data);\n
    \n
    \n
  • \n\n
  • Template member functions\n
    \n

    One or more member functions can be specified in a configuration\nobject passed into the XTemplate constructor for more complex processing:

    \n
    var tpl = new Ext.XTemplate(\n    '<p>Name: {name}</p>',\n    '<p>Kids: ',\n    '<tpl for=\"kids\">',\n        '<tpl if=\"this.isGirl(name)\">',\n            '<p>Girl: {name} - {age}</p>',\n        '</tpl>',\n        // use opposite if statement to simulate 'else' processing:\n        '<tpl if=\"this.isGirl(name) == false\">',\n            '<p>Boy: {name} - {age}</p>',\n        '</tpl>',\n        '<tpl if=\"this.isBaby(age)\">',\n            '<p>{name} is a baby!</p>',\n        '</tpl>',\n    '</tpl></p>',\n    {\n        // XTemplate configuration:\n        compiled: true,\n        disableFormats: true,\n        // member functions:\n        isGirl: function(name){\n            return name == 'Sara Grace';\n        },\n        isBaby: function(age){\n            return age < 1;\n        }\n    }\n);\ntpl.overwrite(panel.body, data);\n
    \n
    \n
  • \n\n
\n\n

Parameters

  • config : Mixed
    \n

Returns

Overrides: Ext.Template.constructor

( el, values, [returnElement] ) : HTMLElement/Ext.Element
Applies the supplied values to the template and appends\nthe new node(s) to the specified el. ...

Applies the supplied values to the template and appends\nthe new node(s) to the specified el.

\n\n

For example usage see the constructor.

\n\n

Parameters

  • el : Mixed

    The context element

    \n
  • values : Object/Array

    The template values. Can be an array if the params are numeric (i.e. {0})\nor an object (i.e. {foo: 'bar'}).

    \n
  • returnElement : Boolean (optional)

    true to return an Ext.Element (defaults to undefined)

    \n

Returns

Ext.XTemplate
view source
( values ) : String
Alias for applyTemplate\nReturns an HTML fragment of this template with the specified values applied. ...

Alias for applyTemplate\nReturns an HTML fragment of this template with the specified values applied.

\n

Parameters

  • values : Object/Array

    The template values. Can be an array if your params are numeric (i.e. {0}) or an object (i.e. {foo: 'bar'})

    \n

Returns

Overrides: Ext.Template.apply

Ext.XTemplate
view source
( values ) : String
Returns an HTML fragment of this template with the specified values applied. ...

Returns an HTML fragment of this template with the specified values applied.

\n

Parameters

  • values : Object

    The template values. Can be an array if your params are numeric (i.e. {0}) or an object (i.e. {foo: 'bar'})

    \n

Returns

Overrides: Ext.Template.applyTemplate

Ext.XTemplate
view source
( ) : Functionchainable
Compile the template to a function for optimized performance. ...

Compile the template to a function for optimized performance. Recommended if the template will be used frequently.

\n

Returns

Overrides: Ext.Template.compile

( el, values, [returnElement] ) : HTMLElement/Ext.Element
Applies the supplied values to the template and inserts the new node(s) after el. ...

Applies the supplied values to the template and inserts the new node(s) after el.

\n

Parameters

  • el : Mixed

    The context element

    \n
  • values : Object/Array

    The template values. Can be an array if your params are numeric (i.e. {0}) or an object (i.e. {foo: 'bar'})

    \n
  • returnElement : Boolean (optional)

    true to return a Ext.Element (defaults to undefined)

    \n

Returns

( el, values, [returnElement] ) : HTMLElement/Ext.Element
Applies the supplied values to the template and inserts the new node(s) before el. ...

Applies the supplied values to the template and inserts the new node(s) before el.

\n

Parameters

  • el : Mixed

    The context element

    \n
  • values : Object/Array

    The template values. Can be an array if your params are numeric (i.e. {0}) or an object (i.e. {foo: 'bar'})

    \n
  • returnElement : Boolean (optional)

    true to return a Ext.Element (defaults to undefined)

    \n

Returns

( el, values, [returnElement] ) : HTMLElement/Ext.Element
Applies the supplied values to the template and inserts the new node(s) as the first child of el. ...

Applies the supplied values to the template and inserts the new node(s) as the first child of el.

\n

Parameters

  • el : Mixed

    The context element

    \n
  • values : Object/Array

    The template values. Can be an array if your params are numeric (i.e. {0}) or an object (i.e. {foo: 'bar'})

    \n
  • returnElement : Boolean (optional)

    true to return a Ext.Element (defaults to undefined)

    \n

Returns

( el, values, [returnElement] ) : HTMLElement/Ext.Element
Applies the supplied values to the template and overwrites the content of el with the new node(s). ...

Applies the supplied values to the template and overwrites the content of el with the new node(s).

\n

Parameters

  • el : Mixed

    The context element

    \n
  • values : Object/Array

    The template values. Can be an array if your params are numeric (i.e. {0}) or an object (i.e. {foo: 'bar'})

    \n
  • returnElement : Boolean (optional)

    true to return a Ext.Element (defaults to undefined)

    \n

Returns

Defined By

Static Methods

Ext.XTemplate
view source
( el ) : Ext.Templatestatic
Creates a template from the passed element's value (display:none textarea, preferred) or innerHTML. ...

Creates a template from the passed element's value (display:none textarea, preferred) or innerHTML.

\n

Parameters

  • el : String/HTMLElement

    A DOM element or its id

    \n

Returns

","superclasses":["Ext.Template"],"meta":{},"requires":[],"html_meta":{},"statics":{"property":[],"cfg":[],"css_var":[],"method":[{"tagname":"method","owner":"Ext.XTemplate","meta":{"static":true},"name":"from","id":"static-method-from"}],"event":[],"css_mixin":[]},"files":[{"href":"XTemplate.html#Ext-XTemplate","filename":"XTemplate.js"}],"linenr":1,"members":{"property":[{"tagname":"property","owner":"Ext.Template","meta":{"private":true},"name":"html","id":"property-html"}],"cfg":[{"tagname":"cfg","owner":"Ext.Template","meta":{},"name":"compiled","id":"cfg-compiled"},{"tagname":"cfg","owner":"Ext.Template","meta":{},"name":"disableFormats","id":"cfg-disableFormats"},{"tagname":"cfg","owner":"Ext.Template","meta":{},"name":"re","id":"cfg-re"}],"css_var":[],"method":[{"tagname":"method","owner":"Ext.XTemplate","meta":{},"name":"constructor","id":"method-constructor"},{"tagname":"method","owner":"Ext.Template","meta":{},"name":"append","id":"method-append"},{"tagname":"method","owner":"Ext.XTemplate","meta":{},"name":"apply","id":"method-apply"},{"tagname":"method","owner":"Ext.XTemplate","meta":{},"name":"applyTemplate","id":"method-applyTemplate"},{"tagname":"method","owner":"Ext.XTemplate","meta":{"chainable":true},"name":"compile","id":"method-compile"},{"tagname":"method","owner":"Ext.Template","meta":{},"name":"insertAfter","id":"method-insertAfter"},{"tagname":"method","owner":"Ext.Template","meta":{},"name":"insertBefore","id":"method-insertBefore"},{"tagname":"method","owner":"Ext.Template","meta":{},"name":"insertFirst","id":"method-insertFirst"},{"tagname":"method","owner":"Ext.Template","meta":{},"name":"overwrite","id":"method-overwrite"}],"event":[],"css_mixin":[]},"inheritable":null,"private":null,"component":false,"name":"Ext.XTemplate","singleton":false,"override":null,"inheritdoc":null,"id":"class-Ext.XTemplate","mixins":[],"mixedInto":[]});