DisplaySelector.js 240 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11
Ext.define('PVE.form.DisplaySelector', {
    extend: 'PVE.form.KVComboBox',
    alias: ['widget.DisplaySelector'],
  
    initComponent: function() {
	var me = this;

	me.data = PVE.Utils.kvm_vga_driver_array();
	me.callParent();
    }
});