Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- $form = $this->beginWidget('CActiveForm', array(
- 'id'=>'newsletter-search',
- //'action'=>Yii::app()->createUrl('Newsletter/search'),
- 'method'=>'get',
- // 'enableAjaxValidation'=>true,
- ));
- echo $form->label($model,'Sort By');
- echo $form->dropDownList($model,'sortStatus',array(
- 'sent'=>'sent',
- 'published'=>'published',
- 'pending'=>'pending',
- 'suspended'=>'suspended',
- ),array('id'=>"SortByStatus"));
- echo CHtml::submitButton('Search');
- $this->endWidget();
- ?>
Advertisement
Add Comment
Please, Sign In to add comment