Form: Show a spinner for ongoing form submits

This will only be shown if there's no progress label set.

refs #8369
This commit is contained in:
Johannes Meyer 2015-08-20 15:05:02 +02:00
parent 275b57cb69
commit a77dc3665c
1 changed files with 2 additions and 1 deletions

View File

@ -773,7 +773,8 @@ class Form extends Zend_Form
'data-progress-label' => $this->getProgressLabel(),
'decorators' => array(
'ViewHelper',
array('HtmlTag', array('tag' => 'div'))
array('Spinner', array('separator' => '')),
array('HtmlTag', array('tag' => 'div', 'class' => 'buttons'))
)
)
);