我可以为 Zii 进度条添加值标签吗?
$w =intval($model->fixed);
$this->widget('zii.widgets.jui.CJuiProgressBar', array(
'value'=> $w ,
'htmlOptions'=>array(
'style'=>'width:200px;height:20px;',
),
));
问候。
答案 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");
}'),
)
);