Ext.define('PVE.qemu.BiosEdit', { extend: 'PVE.window.Edit', initComponent : function() { var me = this; Ext.applyIf(me, { subject: 'BIOS', items: { xtype: 'pveQemuBiosSelector', onlineHelp: 'chapter-qm.html#_bios_and_uefi', name: 'bios', value: '__default__', fieldLabel: 'BIOS' } }); me.callParent(); me.load(); } });