我正在使用 Yii 和 YiiBooster 扩展。我想要一个这样的弹出框:

array(
        'header' => '',
        'value' => function($data)
        {
            $this->widget('bootstrap.widgets.TbButton', array(
                'label'=>'Inne',
                'type'=>'primary',
                'size' => 'mini',
                'htmlOptions'=>array(
                    'data-placement'=>'right',
                    'data-content'=> "Controller::renderPartial('_statButtons',
                                      array('data' => $data->idProject));",
                    'rel'=>'popover'
                ),
            ));
        }
    ),

这是在 gridview 的单元格内。我想使用 renderPartial 来渲染一个包含一些内容的文件,但上面的代码不起作用。我怎样才能实现它?

编辑:
如果代码执行(我的代码或@Ruslans 代码),则结果为:
Here is the text from the _statButtons partial file. End of this file.
<a id="yw2" class="btn btn-primary btn-mini" rel="popover"
   data-placement="right" data-original-title="" title="">Inne</a>

最佳答案

波纹管代码有效。我使用 PHP 5.3

'value' => function($data) use($controller)
{
    $controller->widget('bootstrap.widgets.TbButton', array(
        'label'=>'Inne',
        'type'=>'primary',
        'size' => 'mini',
        'htmlOptions'=>array(
            'data-placement'=>'right',
            'data-content'=> $controller->renderPartial('_test',
                      array('data' => $data->title), true),
            'rel'=>'popover'
        ),
    ));
}

其中 $controller 只是在呈现 $this 小部件之前重新分配 CGridView var。
$controller=$this;

因为在 PHP 5.3 中,闭包无法访问 $this var

据我所知,PHP 5.4 可以访问 $this

调用 Controller::renderPartial(.... - 不好的方法,因为 renderPartial 不是静态函数,而是静态调用。它应该会引发错误,除非您将它们关闭。

关于twitter-bootstrap - Yii booster - renderPartial 弹出窗口的数据内容?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16439762/

10-12 12:57