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

18 lines
286 B
JavaScript

Ext.define('Ext.table.Cell', {
extend: 'Ext.Container',
xtype: 'tablecell',
config: {
baseCls: 'x-table-cell'
},
getElementConfig: function() {
var config = this.callParent();
config.children.length = 0;
return config;
}
});