X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/6746dc89c47ed01b165cc1152533605f97eb8e8d..HEAD:/docs/source/Feature.html diff --git a/docs/source/Feature.html b/docs/source/Feature.html index 3df55483..6c073811 100644 --- a/docs/source/Feature.html +++ b/docs/source/Feature.html @@ -3,8 +3,8 @@ The source code - - + + @@ -98,6 +98,7 @@ Ext.define('Ext.grid.feature.Feature', { * * The method must also return the eventName as the first index of the array * to be passed to fireEvent. + * @template */ getFireEventArgs: function(eventName, view, featureTarget, e) { return [eventName, view, featureTarget, e]; @@ -105,6 +106,7 @@ Ext.define('Ext.grid.feature.Feature', { /** * Approriate place to attach events to the view, selectionmodel, headerCt, etc + * @template */ attachEvents: function() { @@ -118,6 +120,7 @@ Ext.define('Ext.grid.feature.Feature', { * Allows a feature to mutate the metaRowTpl. * The array received as a single argument can be manipulated to add things * on the end/begining of a particular row. + * @template */ mutateMetaRowTpl: function(metaRowTplArray) { @@ -127,6 +130,7 @@ Ext.define('Ext.grid.feature.Feature', { * Allows a feature to inject member methods into the metaRowTpl. This is * important for embedding functionality which will become part of the proper * row tpl. + * @template */ getMetaRowTplFragments: function() { return {}; @@ -142,6 +146,7 @@ Ext.define('Ext.grid.feature.Feature', { * @param {Number} idx The row index for this record. * @param {Ext.data.Model} record The record instance * @param {Object} orig The original result from the prepareData call to massage. + * @template */ getAdditionalData: function(data, idx, record, orig) { return {};