Hi,
I’m using the widget zii.widgets.jui.CJuiSliderInput where model and attribute are set.
$this->widget('zii.widgets.jui.CJuiSliderInput', array('model'=>$model,
'attribute'=>'BOOST',
'id'=>'SuchSetsSlider',
'options'=>array(
'min'=>-800,
'max'=>800,
'value'=>$fallback,
[...]
The current value of the slider is taken from the $model->BOOST (as you can see). If $model->BOOST is unset (NULL), so in Yii 1.1.6 the JS-Option (‘value’=>$fallback) overwrites the empty value of $model->BOOST and sets the value of the slider depending on $fallback.
But Yii 1.1.7 seems to ignore the JS-Option "value" in this case. Could this be possible?
Thanks for any kind of help or information!