@softvisio/ext
Version:
ExtJS patches
20 lines (18 loc) • 585 B
JavaScript
import Ext_grid_LockedGrid from './Ext/grid/LockedGrid.js';
import ElementParser from './common/ElementParser.js';
export default class EWCLockedgrid extends Ext_grid_LockedGrid {
constructor() {
super ([], []);
this.xtype = 'lockedgrid';
}
}
try {
if (window.customElements.get('ext-lockedgrid') == undefined) {
window.customElements.define('ext-lockedgrid', ElementParser.withParsedCallback(EWCLockedgrid));
}
}
catch(e) {
if (window.customElements.get('ext-lockedgrid') == undefined) {
window.customElements.define('ext-lockedgrid', EWCLockedgrid);
}
}