mirror of
				https://git.proxmox.com/git/pve-manager
				synced 2025-11-04 07:12:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			342 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			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();
 | 
						|
    }
 | 
						|
});
 |