在Zii进度条中添加值标签

时间:2014-06-04 11:55:34

标签: jquery-ui yii progress-bar yii-widgets

我可以为 Zii 进度条添加值标签吗?

$w =intval($model->fixed);
        $this->widget('zii.widgets.jui.CJuiProgressBar', array(
         'value'=> $w ,      
         'htmlOptions'=>array(
                 'style'=>'width:200px;height:20px;',            
         ),
        ));

问候。

1 个答案:

答案 0 :(得分:0)

像这样修改以将标签放入进度条

    $w =intval($model->fixed);
    $this->widget('zii.widgets.jui.CJuiProgressBar', array(
     'id'=>'jui_progress_bar',
     'value'=> $w ,
     'htmlOptions'=>array(
             'style'=>'width:200px;height:20px;',            
          ),
     'options'=>array(
          'create'=>new CJavaScriptExpression('function(event, ui) {
                    $("jui_progress_bar").text("Your Text goes here");
                }'),
          )
      );