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