mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-05-28 12:11:05 +00:00

this is ExtJS recommended practise, follows most of our conventions and is necessary for querying components with Ext.ComponentQuery.query() without escaping the dots in the component widget name.
11 lines
303 B
JavaScript
11 lines
303 B
JavaScript
Ext.define('PVE.form.NetworkCardSelector', {
|
|
extend: 'PVE.form.KVComboBox',
|
|
alias: 'widget.pveNetworkCardSelector',
|
|
comboItems: [
|
|
['e1000', 'Intel E1000'],
|
|
['virtio', 'VirtIO (' + gettext('paravirtualized') + ')'],
|
|
['rtl8139', 'Realtek RTL8139'],
|
|
['vmxnet3', 'VMware vmxnet3']
|
|
]
|
|
});
|