当前位置: 首页>>代码示例>>PHP>>正文


PHP Column::renderFilterCellContent方法代码示例

本文整理汇总了PHP中yii\grid\Column::renderFilterCellContent方法的典型用法代码示例。如果您正苦于以下问题:PHP Column::renderFilterCellContent方法的具体用法?PHP Column::renderFilterCellContent怎么用?PHP Column::renderFilterCellContent使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在yii\grid\Column的用法示例。


在下文中一共展示了Column::renderFilterCellContent方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: renderFilterCellContent

 protected function renderFilterCellContent()
 {
     $filter = $this->guessFilter();
     if ($filter instanceof BaseFilter) {
         return $filter->render();
     }
     return Column::renderFilterCellContent();
 }
开发者ID:omnilight,项目名称:yz2-admin,代码行数:8,代码来源:DataColumn.php

示例2: renderFilterCellContent

 /**
  * @inheritdoc
  */
 protected function renderFilterCellContent()
 {
     if (is_string($this->filter)) {
         return $this->filter;
     }
     $model = $this->grid->filterModel;
     if ($this->filter !== false && $model instanceof Model && $this->attribute !== null && $model->isAttributeActive($this->attribute)) {
         if ($model->hasErrors($this->attribute)) {
             Html::addCssClass($this->filterOptions, 'has-error');
             $error = ' ' . Html::error($model, $this->attribute, $this->grid->filterErrorOptions);
         } else {
             $error = '';
         }
         if (is_array($this->filter)) {
             $options = array_merge(['prompt' => ''], $this->filterInputOptions);
             return Html::activeDropDownList($model, $this->attribute, $this->filter, $options) . $error;
         } else {
             return Html::activeTextInput($model, $this->attribute, $this->filterInputOptions) . $error;
         }
     } else {
         return parent::renderFilterCellContent();
     }
 }
开发者ID:noorafree,项目名称:makmakan,代码行数:26,代码来源:DataColumn.php

示例3: renderFilterCellContent

 /**
  * @inheritdoc
  */
 protected function renderFilterCellContent()
 {
     if (is_string($this->filter)) {
         return $this->filter;
     } elseif ($this->filter !== false && $this->grid->filterModel instanceof Model && $this->attribute !== null && $this->grid->filterModel->isAttributeActive($this->attribute)) {
         if (is_array($this->filter)) {
             $options = array_merge(['prompt' => ''], $this->filterInputOptions);
             return Html::activeDropDownList($this->grid->filterModel, $this->attribute, $this->filter, $options);
         } else {
             return Html::activeTextInput($this->grid->filterModel, $this->attribute, $this->filterInputOptions);
         }
     } else {
         return parent::renderFilterCellContent();
     }
 }
开发者ID:yuexiaoyun,项目名称:lulucms,代码行数:18,代码来源:DataColumn.php


注:本文中的yii\grid\Column::renderFilterCellContent方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。