yii引导程序+小部件TbButtonColumn +小部件TbButtonGroup

yii引导程序+小部件TbButtonColumn +小部件TbButtonGroup

面对这样一个问题:

表由引导程序(来自yii-booster)的小部件TbGridView形成。 在TbButtonColumn列中,我形成了“编辑/删除等”。

但是我想用分割下拉菜单的效果来做一个按钮http://yii-booster.clevertech.biz/components.html#buttonDropdowns

$this->widget('bootstrap.widgets.TbGridView', array(
    'id'=>'customer-grid',
    'type'=>'striped bordered condensed',
    'dataProvider'=>$model->search(),
    'filter'=>$model,
    'columns'=>array(
        'surname',
        'name',
        'middlename',
        'dateOfBirth',
        array(
            'class'=>'bootstrap.widgets.TbButtonColumn',
            'template'=>'{add} {list} {update} {print_act}',
            'buttons'=>array
            (
                'add' => array
                (
                    'label'=>'Назначить прием',
                    'icon'=>'plus',
                    'url'=>'Yii::app()->createUrl("reception/create", array("id"=>$data->id))',
                    'options'=>array(
                        'class'=>'btn btn-small',
                    ),
                ),
                'list' => array
                (
                    'label'=>'Список предоставленных услуг',
                    'icon'=>'list white',
                    'url'=>'Yii::app()->createUrl("patient/update", array("id"=>$data->id))',
                    'options'=>array(
                        'class'=>'btn btn-small btn-info',
                    ),
                ),
                'update' => array
                (
                    'label'=>'Изменить данные Пациента',
                    'icon'=>'pencil white',
                    'url'=>'Yii::app()->createUrl("customer/update", array("id"=>$data->id))',
                    'options'=>array(
                        'class'=>'btn btn-small btn-success',
                    ),
                ),
                'print_act' => array
                (
                    'label'=>'Печать акта выполненных работ',
                    'icon'=>'print',
                    'url'=>'Yii::app()->createUrl("customer/printAct", array("id"=>$data->id))',
                    'options'=>array(
                        'class'=>'btn btn-small',
                    ),
                ),
            ),
            'htmlOptions'=>array(
                'style'=>'width: 220px',
            ),
        ) 
    ),
));

我总是发现,当我需要在gridview中渲染一个复杂的元素(特别是一个小部件)时,如果从控制器调用一个函数,它会更容易。 例如,你的gridview会有像这样定义的列:

'columns'=>array(
    'surname',
    'name',
    'middlename',
    'dateOfBirth'
    ...
    array(
        'name'=>'fieldName',
        //call the function 'renderButtons' from the current controller
        'value'=>array($this,'renderButtons'),
    ),
 )

然后在你的行动中会看起来像这样。 这只是呈现来自Yii-booster示例页面的示例小部件http://yii-booster.clevertech.biz/components.html#buttonDropdowns:

编辑:这也是有用的,因为回调函数renderButtons()接受2个参数:$ data和$ row。 您可以使用$ data从gridview的数据提供者访问数据,以便动态地呈现一个小部件。

public function renderButtons($data, $row) {
   $this->widget('bootstrap.widgets.TbButtonGroup', array(
      'size'=>'large',
      'type'=>'inverse', // '', 'primary', 'info', 'success', 'warning', 'danger' or 'inverse'
      'buttons'=>array(
         array('label'=>'Inverse', 'items'=>array(
            array('label'=>'Action', 'url'=>'#'),
            array('label'=>'Another action', 'url'=>'#'),
            array('label'=>'Something else', 'url'=>'#'),
            '---',
            array('label'=>'Separate link', 'url'=>'#'),
        )),
      ),
   ));
}

我会通过添加另一列来做到这一点。 TbColumnButton和TbButtonGroup都是小部件。 您可以通过添加按钮组

...
array(
    'class'=>'bootstrap.widgets.TbButtonColumn',
),
array(
    'class'=>'bootstrap.widgets.TbButtonGroup',
    ...
),
链接地址: http://www.djcxy.com/p/69727.html

上一篇: yii bootstrap + widget TbButtonColumn + widget TbButtonGroup

下一篇: In yii how to render view in widget