Ejemplo n.º 1
0
 /**
  * Allows for default boolean filter to be set. See {@link X2Leads::search}
  */
 public function renderFilterCellContent()
 {
     if ($this->fieldModel['fieldName'] == 'converted') {
         echo CHtml::activeDropdownList($this->grid->filter, $this->name, array('all' => Yii::t('app', 'All'), '1' => Yii::t('app', 'Yes'), 'false' => Yii::t('app', "No")), array('class' => 'x2-minimal-select-filtercol'));
     } else {
         parent::renderFilterCellContent();
     }
 }
Ejemplo n.º 2
0
 /**
  * Allows for default boolean filter to be set. See {@link X2Leads::search}
  */
 public function renderFilterCellContent()
 {
     switch ($this->fieldType) {
         case 'boolean':
             echo CHtml::activeDropdownList($this->grid->filter, $this->name, array('all' => Yii::t('app', 'All'), '1' => Yii::t('app', 'Yes'), 'false' => Yii::t('app', "No")), array('class' => 'x2-minimal-select-filtercol'));
             break;
         default:
             parent::renderFilterCellContent();
     }
 }