[Config Option] (String[])
[Config Option] (String/String[])
[Config Option] (Boolean)
[Config Option] (Object)
[Config Option] (Boolean)
[Config Option] (String)
[Config Option] (Object)
[Property] (Boolean)
[Config Option] (Object)
[Config Option] (Object)
[Property] (Ext.Class)
[Config Option] (Boolean)
[Config Option] (Object)
[Config Option] (String[])
[Method] Applies the supplied values to the template and appends the new node s to the specified el
String/HTMLElement/Ext.Element The context element.
Object/Array The template values. See applyTemplate for details.
Boolean true to return an Ext.Element.
any
HTMLElement/Ext.Element The new node or Element.
[Method] Returns an HTML fragment of this template with the specified values applied
Object/Array The template values. Can be an array if your params are numeric: var tpl = new Ext.Template('Name: {0}, Age: {1}'); tpl.apply(['John', 25]); or an object: var tpl = new Ext.Template('Name: {name}, Age: {age}'); tpl.apply({name: 'John', age: 25});
string
String The HTML fragment.
[Method] Appends the result of this template to the provided output array
Object/Array The template values. See apply.
Array The array to which output is pushed.
Object
Array<any>
Array The given out array.
[Method] Alias for apply
Object/Array The template values. Can be an array if your params are numeric: var tpl = new Ext.Template('Name: {0}, Age: {1}'); tpl.apply(['John', 25]); or an object: var tpl = new Ext.Template('Name: {name}, Age: {age}'); tpl.apply({name: 'John', age: 25});
string
String The HTML fragment.
[Method] Call the original method that was previously overridden with override This method is deprecated as callParent does
Array/Arguments The arguments, either an array or the arguments object from the current method, for example: this.callOverridden(arguments)
any
Object Returns the result of calling the overridden method
[Method] Call the parent method of the current method
Array/Arguments The arguments, either an array or the arguments object from the current method, for example: this.callParent(arguments)
any
Object Returns the result of calling the parent method
[Method] This method is used by an override to call the superclass method but bypass any overridden method
Array/Arguments The arguments, either an array or the arguments object from the current method, for example: this.callSuper(arguments)
any
Object Returns the result of calling the superclass method
[Method] Compiles the template into an internal function eliminating the RegEx overhead
Ext.Template this
[Method]
[Method] Returns the initial configuration passed to constructor
String When supplied, value for particular configuration option is returned, otherwise the full config object is returned.
any
Object/Mixed
[Method] Initialize configuration for this class
Object
any
Object mixins The mixin prototypes as key - value pairs
[Method] Applies the supplied values to the template and inserts the new node s after el
String/HTMLElement/Ext.Element The context element.
Object/Array The template values. See applyTemplate for details.
Boolean true to return a Ext.Element.
any
HTMLElement/Ext.Element The new node or Element.
[Method] Applies the supplied values to the template and inserts the new node s before el
String/HTMLElement/Ext.Element The context element.
Object/Array The template values. See applyTemplate for details.
Boolean true to return an Ext.Element.
any
HTMLElement/Ext.Element The new node or Element
[Method] Applies the supplied values to the template and inserts the new node s as the first child of el
String/HTMLElement/Ext.Element The context element.
Object/Array The template values. See applyTemplate for details.
Boolean true to return a Ext.Element.
any
HTMLElement/Ext.Element The new node or Element.
[Method] Applies the supplied values to the template and overwrites the content of el with the new node s
String/HTMLElement/Ext.Element The context element.
Object/Array The template values. See applyTemplate for details.
Boolean true to return a Ext.Element.
any
HTMLElement/Ext.Element The new node or Element.
[Method] Sets the HTML used as the template and optionally compiles it
String
Boolean true to compile the template.
Ext.Template this