]> git.proxmox.com Git - pve-manager.git/blame - www/manager6/qemu/KeyboardEdit.js
update shipped appliance info index
[pve-manager.git] / www / manager6 / qemu / KeyboardEdit.js
CommitLineData
bf8873e8 1Ext.define('PVE.qemu.KeyboardEdit', {
9fccc702 2 extend: 'Proxmox.window.Edit',
bf8873e8 3
8058410f 4 initComponent: function() {
bf8873e8
DM
5 var me = this;
6
7 Ext.applyIf(me, {
8 subject: gettext('Keyboard Layout'),
9 items: {
10 xtype: 'VNCKeyboardSelector',
11 name: 'keyboard',
ac7db8f7 12 value: '__default__',
f6710aac
TL
13 fieldLabel: gettext('Keyboard Layout'),
14 },
bf8873e8
DM
15 });
16
17 me.callParent();
18
19 me.load();
f6710aac 20 },
bf8873e8 21});