addElement( 'submit', 'btnCancel', array( 'label' => 'Cancel', 'attribs' => array( 'class' => 'btn', 'onclick' => "window.location.href = '" . htmlspecialchars($this->getCancelUrl()) . "';", 'helper' => 'formInputButton', ), ) ); $this->addElement( 'submit', 'btnSubmit', array( 'label' => 'Proceed to the Next Step >', 'attribs' => array('class' => 'btn btn-primary'), ) ); $this->addDisplayGroup(array('btnCancel', 'btnSubmit'), 'submitGroup'); return $this; } }