StatehistoryForm: Remove autoupdate on clicking the select-boxes

refs 
This commit is contained in:
Jennifer Mourek 2016-10-14 15:16:39 +02:00
parent 9ec471d349
commit 5c2711872a
1 changed files with 5 additions and 10 deletions
modules/monitoring/application/forms

View File

@ -71,8 +71,7 @@ class StatehistoryForm extends Form
strtotime('midnight 8 months ago') => $this->translate('8 Months'), strtotime('midnight 8 months ago') => $this->translate('8 Months'),
strtotime('midnight 12 months ago') => $this->translate('1 Year'), strtotime('midnight 12 months ago') => $this->translate('1 Year'),
strtotime('midnight 24 months ago') => $this->translate('2 Years') strtotime('midnight 24 months ago') => $this->translate('2 Years')
), )
'class' => 'autosubmit'
) )
); );
$this->addElement( $this->addElement(
@ -83,8 +82,7 @@ class StatehistoryForm extends Form
'value' => $this->getRequest()->getParam('to', time()), 'value' => $this->getRequest()->getParam('to', time()),
'multiOptions' => array( 'multiOptions' => array(
time() => $this->translate('Today') time() => $this->translate('Today')
), )
'class' => 'autosubmit'
) )
); );
@ -98,8 +96,7 @@ class StatehistoryForm extends Form
'multiOptions' => array( 'multiOptions' => array(
'services' => $this->translate('Services'), 'services' => $this->translate('Services'),
'hosts' => $this->translate('Hosts') 'hosts' => $this->translate('Hosts')
), )
'class' => 'autosubmit'
) )
); );
if ($objectType === 'services') { if ($objectType === 'services') {
@ -118,8 +115,7 @@ class StatehistoryForm extends Form
'cnt_warning_hard' => $this->translate('Warning'), 'cnt_warning_hard' => $this->translate('Warning'),
'cnt_unknown_hard' => $this->translate('Unknown'), 'cnt_unknown_hard' => $this->translate('Unknown'),
'cnt_ok' => $this->translate('Ok') 'cnt_ok' => $this->translate('Ok')
), )
'class' => 'autosubmit'
) )
); );
} else { } else {
@ -137,8 +133,7 @@ class StatehistoryForm extends Form
'cnt_up' => $this->translate('Up'), 'cnt_up' => $this->translate('Up'),
'cnt_down_hard' => $this->translate('Down'), 'cnt_down_hard' => $this->translate('Down'),
'cnt_unreachable_hard' => $this->translate('Unreachable') 'cnt_unreachable_hard' => $this->translate('Unreachable')
), )
'class' => 'autosubmit'
) )
); );
} }