/**
  * Set the view object
  *
  * @param \Zend_View_Interface $view
  * @return \Gems_TabForm
  */
 public function setView(\Zend_View_Interface $view = null)
 {
     /**
      * If the form is populated... and we have a tab set... select it
      */
     if ($tab = $this->getValue('tab')) {
         $this->selectTab($tab);
     }
     parent::setView($view);
     if ($this->_view !== $view) {
         $this->activateJQuery();
     }
     return $this;
 }