mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-05-24 16:37:58 +00:00
17 lines
351 B
JavaScript
17 lines
351 B
JavaScript
Ext.define('PVE.form.NetworkCardSelector', {
|
|
extend: 'PVE.form.KVComboBox',
|
|
alias: ['widget.PVE.form.NetworkCardSelector'],
|
|
|
|
initComponent: function() {
|
|
var me = this;
|
|
|
|
me.data = [
|
|
['e1000', 'Intel E1000'],
|
|
['virtio', 'VirtIO (paravirtualized)'],
|
|
['rtl8139', 'Realtec RTL8139']
|
|
];
|
|
|
|
me.callParent();
|
|
}
|
|
});
|