2

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

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

问候。

4

1 回答 1

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");
                }'),
          )
      );
于 2014-06-04T12:06:46.323 回答