3.0 source code
This commit is contained in:
22
OfficeWeb/vendor/touch/src/table/Table.js
vendored
Normal file
22
OfficeWeb/vendor/touch/src/table/Table.js
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
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);
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user