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 に答える