pve-manager/www/manager6/form/FirewallPolicySelector.js
Emmanuel Kasper 66832e3f2c ext6migrate: last fixes for firewall
listen to 'activate' event is needed because of framework changes,
similar to 66162fe4a96ddc8c42c61b6d4cf41edda68210af

ext6migrate: listen to 'activate' events for panels inside a tabpanel
2016-02-09 07:29:31 +01:00

10 lines
234 B
JavaScript

Ext.define('PVE.form.FirewallPolicySelector', {
extend: 'PVE.form.KVComboBox',
alias: ['widget.pveFirewallPolicySelector'],
comboItems: [
['ACCEPT', 'ACCEPT'],
['REJECT', 'REJECT'],
[ 'DROP', 'DROP']
]
});