mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-05-30 21:30:09 +00:00
14 lines
258 B
JavaScript
14 lines
258 B
JavaScript
Ext.define('PVE.form.PermPathSelector', {
|
|
extend: 'Ext.form.field.ComboBox',
|
|
xtype: 'pvePermPathSelector',
|
|
|
|
valueField: 'value',
|
|
displayField: 'value',
|
|
typeAhead: true,
|
|
queryMode: 'local',
|
|
|
|
store: {
|
|
type: 'pvePermPath'
|
|
}
|
|
});
|