Add a value label in Zii progress bar

237 Views Asked by At

can I add a value label for a Zii progress bar?

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

Regards.

1

There are 1 best solutions below

0
On

Modify like this to put label to your progress bar

    $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");
                }'),
          )
      );