mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-05-24 23:20:49 +00:00
23 lines
343 B
JavaScript
23 lines
343 B
JavaScript
Ext.define('PVE.qemu.DisplayEdit', {
|
|
extend: 'PVE.window.Edit',
|
|
|
|
initComponent : function() {
|
|
var me = this;
|
|
|
|
Ext.apply(me, {
|
|
title: "Edit display settings",
|
|
width: 350,
|
|
items: {
|
|
xtype: 'DisplaySelector',
|
|
name: 'vga',
|
|
value: '',
|
|
fieldLabel: 'Graphic card'
|
|
}
|
|
});
|
|
|
|
me.callParent();
|
|
|
|
me.load();
|
|
}
|
|
});
|