pve-manager/www/manager/qemu/KeyboardEdit.js
2011-08-23 07:40:22 +02:00

22 lines
342 B
JavaScript

Ext.define('PVE.qemu.KeyboardEdit', {
extend: 'PVE.window.Edit',
initComponent : function() {
var me = this;
Ext.applyIf(me, {
title: "Edit keyboard settings",
items: {
xtype: 'VNCKeyboardSelector',
name: 'keyboard',
value: '',
fieldLabel: 'Keyboard Layout'
}
});
me.callParent();
me.load();
}
});