X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/6746dc89c47ed01b165cc1152533605f97eb8e8d..HEAD:/src/grid/feature/Feature.js diff --git a/src/grid/feature/Feature.js b/src/grid/feature/Feature.js index 9797b22c..d6fd5f0e 100644 --- a/src/grid/feature/Feature.js +++ b/src/grid/feature/Feature.js @@ -95,6 +95,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]; @@ -102,6 +103,7 @@ Ext.define('Ext.grid.feature.Feature', { /** * Approriate place to attach events to the view, selectionmodel, headerCt, etc + * @template */ attachEvents: function() { @@ -115,6 +117,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) { @@ -124,6 +127,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 {}; @@ -139,6 +143,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 {};