> 백엔드 개발 > PHP 튜토리얼 > Yii2 的 GridView 如何生成批量操作按钮

Yii2 的 GridView 如何生成批量操作按钮

WBOY
풀어 주다: 2016-06-06 20:33:58
원래의
1182명이 탐색했습니다.

使用yii2 生成管理列表,有 CheckboxColumns::className()这个可以生成复选框,但这个“批量提交”的按钮是放到哪里?我想把批量删除的按钮放在GridView 生成的<table><tfooter></tfooter></table>里面,但是却无法控制的,除非修改 /vendor/里面的类, GridView (D:\website\yii2\basic\vendor\yiisoft\yii2\grid\GridView.php) 方法 renderTableFooter,如何生成 <tr><td colspan="30"><input type="submit" value="批量删除"></td></tr>

<code># 文件 D:\website\yii2\basic\vendor\yiisoft\yii2\grid\GridView.php
   /**
     * Renders the table footer.
     * @return string the rendering result.
     */
    public function renderTableFooter()
    {
        $cells = [];
        foreach ($this->columns as $column) {
            /* @var $column Column */
            $cells[] = $column->renderFooterCell();
        }
        $content = Html::tag('tr', implode('', $cells), $this->footerRowOptions);
        if ($this->filterPosition == self::FILTER_POS_FOOTER) {
            $content .= $this->renderFilters();
        }

        return "<tfoot>\n" . $content . "\n</tfoot>";
    }
</code>
로그인 후 복사
로그인 후 복사

foreach 这个里面已经无法控制 colunms 了,无法生成 <tfooter><tr><td colspan="30"></td></tr></tfooter>,yii2如何使用批量功能?

回复内容:

使用yii2 生成管理列表,有 CheckboxColumns::className()这个可以生成复选框,但这个“批量提交”的按钮是放到哪里?我想把批量删除的按钮放在GridView 生成的<table><tfooter></tfooter></table>里面,但是却无法控制的,除非修改 /vendor/里面的类, GridView (D:\website\yii2\basic\vendor\yiisoft\yii2\grid\GridView.php) 方法 renderTableFooter,如何生成 <tr><td colspan="30"><input type="submit" value="批量删除"></td></tr>

<code># 文件 D:\website\yii2\basic\vendor\yiisoft\yii2\grid\GridView.php
   /**
     * Renders the table footer.
     * @return string the rendering result.
     */
    public function renderTableFooter()
    {
        $cells = [];
        foreach ($this->columns as $column) {
            /* @var $column Column */
            $cells[] = $column->renderFooterCell();
        }
        $content = Html::tag('tr', implode('', $cells), $this->footerRowOptions);
        if ($this->filterPosition == self::FILTER_POS_FOOTER) {
            $content .= $this->renderFilters();
        }

        return "<tfoot>\n" . $content . "\n</tfoot>";
    }
</code>
로그인 후 복사
로그인 후 복사

foreach 这个里面已经无法控制 colunms 了,无法生成 <tfooter><tr><td colspan="30"></td></tr></tfooter>,yii2如何使用批量功能?

'showFooter'=>true,然后'footer'=>'批量删除'。

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿