66832e3f2c
listen to 'activate' event is needed because of framework changes, similar to 66162fe4a96ddc8c42c61b6d4cf41edda68210af ext6migrate: listen to 'activate' events for panels inside a tabpanel
10 lines
234 B
JavaScript
10 lines
234 B
JavaScript
Ext.define('PVE.form.FirewallPolicySelector', {
|
|
extend: 'PVE.form.KVComboBox',
|
|
alias: ['widget.pveFirewallPolicySelector'],
|
|
comboItems: [
|
|
['ACCEPT', 'ACCEPT'],
|
|
['REJECT', 'REJECT'],
|
|
[ 'DROP', 'DROP']
|
|
]
|
|
});
|