Guest User

Untitled

a guest
Dec 3rd, 2014
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <?php
  2. $form = $this->beginWidget('CActiveForm', array(
  3. 'id'=>'newsletter-search',
  4. //'action'=>Yii::app()->createUrl('Newsletter/search'),
  5. 'method'=>'get',
  6. // 'enableAjaxValidation'=>true,
  7.  
  8.  
  9. ));
  10.  
  11. echo $form->label($model,'Sort By');
  12. echo $form->dropDownList($model,'sortStatus',array(
  13. 'sent'=>'sent',
  14. 'published'=>'published',
  15. 'pending'=>'pending',
  16. 'suspended'=>'suspended',
  17.  
  18.  
  19. ),array('id'=>"SortByStatus"));
  20.  
  21.  
  22. echo CHtml::submitButton('Search');
  23.  
  24.  
  25.  
  26. $this->endWidget();
  27. ?>
Advertisement
Add Comment
Please, Sign In to add comment