0

我有自定义小部件......我只想在 Tbgridview 中调用小部件......

这是代码..

$this->widget('bootstrap.widgets.TbGridView', array(
'id' => 'test1',
'type' => 'striped bordered condensed',
'dataProvider'=>$model->search(),
'filter'=>$model,
'columns'=>array(
    'name',
    'addr',
    'email',

     array(

                   'type'  => 'raw',
                    'value' => $this->widget('DropDownRedirect', array(
                                 'data' => array('1'=>'1','2'=>'2','3'=>'3'))),
                 ),
           )
     ));

它不起作用..有人可以帮助我吗?...

请参考下面给出的类 DropdownRedirect。

class DropDownRedirect extends CWidget {
public $name; 

public $select; 

public $data; 

public $htmlOptions = array(); 

public $url;

public $replacement = '__value__';

protected function registerScript() {
    $script = '$("#'.$this->id.'").change(function(){'
    .'$(location).attr("href", "'.$this->url.'".replace("'.$this->replacement.'", $(this).val()));'
    .'});';
    Yii::app()->clientScript->registerScript(__CLASS__.$this->id, $script);
}

public function init() {
    if (! isset($this->name))
        $this->name= $this->id;
    $this->registerScript();
}

public function run() {
    if (!isset($this->htmlOptions['id'])) $this->htmlOptions['id'] = $this->id;
    echo CHtml::dropDownList($this->name, $this->select, $this->data, $this->htmlOptions);
}}

提前致谢

4

2 回答 2

3

CGridView 需要一个 php 表达式,因为value它一旦被评估就会产生一个字符串

  1. php 表达式需要作为字符串传递
  2. $captureOutput(最后一个参数) ofCController::widget()需要设置为 true 以便捕获小部件而不是将其直接发送到显示器。
  3. 在 php 表达式中$this是指列对象,因此应该使用引用控制器$this->grid->controller

因此:

'value' => '$this->grid->controller->widget("DropDownRedirect",
            array("data" => array("1"=>"1","2"=>"2","3"=>"3")),
            true)'
于 2013-06-15T09:24:07.530 回答
0
array(
               #'name' => 'name',
               'type'  => 'raw',
                'value' => $this->widget('DropDownRedirect', array(
                             'data' => array('1'=>'1','2'=>'2','3'=>'3'))),
             ),
       )
 ));

我认为您需要有一个名称列。

于 2013-06-15T10:22:06.473 回答