Ejemplo n.º 1
0
 /**
  * Renders this widget and returns the HTML as a string
  *
  * @return  string
  */
 public function render()
 {
     $form = new Form();
     $form->setAttrib('class', 'inline');
     $form->setMethod('GET');
     $form->setUidDisabled();
     $form->setTokenDisabled();
     $form->setName($this->name);
     $form->addElement('select', $this->parameter, array('label' => $this->label, 'multiOptions' => $this->values, 'autosubmit' => true));
     if ($this->request) {
         $form->populate($this->request->getParams());
     }
     return $form;
 }
Ejemplo n.º 2
0
 /**
  * Render this SortBox as HTML
  *
  * @return  string
  */
 public function render()
 {
     $form = new Form();
     $form->setTokenDisabled();
     $form->setName($this->name);
     $form->setAttrib('class', 'sort-control inline');
     $form->addElement('select', 'sort', array('autosubmit' => true, 'label' => $this->view()->translate('Sort by'), 'multiOptions' => $this->sortFields));
     $form->getElement('sort')->setDecorators(array(array('ViewHelper'), array('Label')));
     $form->addElement('select', 'dir', array('autosubmit' => true, 'multiOptions' => array('asc' => 'Asc', 'desc' => 'Desc'), 'decorators' => array(array('ViewHelper'))));
     if ($this->request) {
         $form->populate($this->request->getParams());
     }
     return $form;
 }
Ejemplo n.º 3
0
 /**
  * Renders this widget via the given view and returns the
  * HTML as a string
  *
  * @return  string
  */
 public function render()
 {
     $form = new Form();
     $form->setAttrib('class', 'inline');
     $form->setMethod('GET');
     $form->setTokenDisabled();
     $form->setName($this->name);
     $form->addElement('select', 'sort', array('label' => 'Sort By', 'multiOptions' => $this->sortFields, 'class' => 'autosubmit'));
     $form->addElement('select', 'dir', array('multiOptions' => array('desc' => 'Desc', 'asc' => 'Asc'), 'class' => 'autosubmit'));
     $sort = $form->getElement('sort')->setDecorators(array('ViewHelper'));
     $dir = $form->getElement('dir')->setDecorators(array('ViewHelper'));
     // $form->enableAutoSubmit(array('sort', 'dir'));
     // $form->addElement($this->createFallbackSubmitButton());
     if ($this->request) {
         $form->setAction($this->request->getRequestUri());
         $form->populate($this->request->getParams());
     }
     return $form;
 }