web-apps/vendor/touch/src/table/Table.js
Maxim Kadushkin 741b10515d webapps added
2016-03-10 21:48:53 -03:00

23 lines
435 B
JavaScript

Ext.define('Ext.table.Table', {
extend: 'Ext.Container',
requires: ['Ext.table.Row'],
xtype: 'table',
config: {
baseCls: 'x-table',
defaultType: 'tablerow'
},
cachedConfig: {
fixedLayout: false
},
fixedLayoutCls: 'x-table-fixed',
updateFixedLayout: function(fixedLayout) {
this.innerElement[fixedLayout ? 'addCls' : 'removeCls'](this.fixedLayoutCls);
}
});