/**
  * Require this overwrite to show bootstrap filter field
  */
 public function renderFilterCell()
 {
     if (yii::app()->editable->form != EditableConfig::FORM_BOOTSTRAP) {
         parent::renderFilterCell();
         return;
     }
     echo '<td><div class="filter-container">';
     $this->renderFilterCellContent();
     echo '</div></td>';
 }