/*
|
This file is part of Ext JS 4.2
|
|
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-05-16 14:36:50 (f9be68accb407158ba2b1be2c226a6ce1f649314)
|
*/
|
/**
|
* @private
|
*/
|
Ext.define('Ext.grid.feature.RowWrap', {
|
extend: 'Ext.grid.feature.Feature',
|
alias: 'feature.rowwrap',
|
|
rowWrapTd: 'td.' + Ext.baseCSSPrefix + 'grid-rowwrap',
|
|
// turn off feature events.
|
hasFeatureEvent: false,
|
|
tableTpl: {
|
before: function(values, out) {
|
if (values.view.bufferedRenderer) {
|
values.view.bufferedRenderer.variableRowHeight = true;
|
}
|
},
|
priority: 200
|
},
|
|
wrapTpl: [
|
'<tr data-boundView="{view.id}" data-recordId="{record.internalId}" data-recordIndex="{recordIndex}" class="{[values.itemClasses.join(" ")]} ' + Ext.baseCSSPrefix + 'grid-wrap-row">',
|
'<td class="' + Ext.baseCSSPrefix + 'grid-rowwrap ' + Ext.baseCSSPrefix + 'grid-td" colSpan="{columns.length}">',
|
'<table class="' + Ext.baseCSSPrefix + '{view.id}-table ' + Ext.baseCSSPrefix + 'grid-table" border="0" cellspacing="0" cellpadding="0">',
|
'{[values.view.renderColumnSizer(out)]}',
|
'{%',
|
'values.itemClasses.length = 0;',
|
'this.nextTpl.applyOut(values, out, parent)',
|
'%}',
|
'</table>',
|
'</td>',
|
'</tr>', {
|
priority: 200
|
}
|
],
|
|
init: function(grid) {
|
var me = this;
|
me.view.addTableTpl(me.tableTpl);
|
me.view.addRowTpl(Ext.XTemplate.getTpl(me, 'wrapTpl'));
|
me.view.headerCt.on({
|
columnhide: me.onColumnHideShow,
|
columnshow: me.onColumnHideShow,
|
scope: me
|
});
|
},
|
|
// Keep row wtap colspan in sync with number of *visible* columns.
|
onColumnHideShow: function() {
|
var view = this.view,
|
items = view.el.query(this.rowWrapTd),
|
colspan = view.headerCt.getVisibleGridColumns().length,
|
len = items.length,
|
i;
|
|
for (i = 0; i < len; ++i) {
|
items[i].colSpan = colspan;
|
}
|
}
|
});
|