简体   繁体   中英

when I click view button in CGridView, it is opened in a new window

我在Yii框架中使用了CGridView,我想在单击视图按钮时在新窗口中打开它,如何添加目标的“ _new”?

Add 'options' => array('target'=>'_new') to CButtonColumn configuration array in CGridView

array(
    'class'=>'zii.widgets.grid.CButtonColumn',
    'template' => '{view}',
    'buttons'=>array(
        'view' => array(
            'url' => '', // view url
            'options' => array('target' => '_new'),
        ),
    ),
),

You can provide the html properties by using 'options' property.

    <?php
    $this->widget('zii.widgets.grid.CGridView', array(
        'dataProvider' => $dataProvider,
        'columns' => array(
            'table_field_1',
            'table_field_2',
            'table_field_3',
            array(
                'class' => 'CButtonColumn',
                /* ===== Template to set the buutons. Ex: If you dont want delete link, remove {delete} */
                //'template' => '{view} {update} {delete}',
                'buttons' => array(
                    'view' => array(
                        'options' => array('class' => 'newWindow'),
                    ),
                ),
            ),
        ),
    ));
    ?>

But, Opening a new window is browser dependent. With target="_blank" and target="_new" link will be opened in new tab in Mozilla, But in IE you will get new window. So user javascript to generate new window.

    <?php
    $this->widget('zii.widgets.grid.CGridView', array(
        'dataProvider' => $dataProvider,
        'columns' => array(
            'table_field_1',
            'table_field_2',
            'table_field_3',
            array(
                'class' => 'CButtonColumn',
                /* ===== Template to set the buutons. Ex: If you dont want delete link, remove {delete} */
                //'template' => '{view} {update} {delete}',
                'buttons' => array(
                    'view' => array(
                        'options' => array('class' => 'newWindow'),
                    ),
                ),
            ),
        ),
    ));
    ?>

Keep this jQuery in your .js file

    <script>
        $(document).ready(function()
        {
            $(".newWindow").click(function(e)
            {
                e.preventDefault();
                var url=$(this).attr('href');
                window.open(url, "_blank", "toolbar=no, scrollbars=yes, resizable=yes, top=100, left=100, width=1020, height=500");
            });
        });
    </script>

You can use this

<?php
$this->widget('zii.widgets.grid.CGridView', array(
    'dataProvider' => $dataProvider,
    'columns' => array(
        'table_field_1',
        'table_field_2',
        'table_field_3',
        array(
            'class' => 'CButtonColumn',
            /* ===== Template to set the buutons. Ex: If you dont want delete link, remove {delete} */
            //'template' => '{view} {update} {delete}',
            'buttons' => array(
                'view' => array(
                    'options' => array('target' => '_blank'),
                ),
            ),
        ),
    ),
));
?>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM