<?php
$this->widget('zii.widgets.jui.CJuiSlider', array(
'value'=>37,
'id'=>'amtSlider',
// additional javascript options for the slider plugin
'options'=>array(
'min'=>0,
'max'=>100,
'slide'=>'function(event, ui) { $("#amt").val(ui.value);}',
),
'htmlOptions'=>array(
'style'=>'height:12px;'
),
));
?>
<label for="amt">Volume:</label>
<input type="text" id="amt" style="border:0; color:#f6931f; font-weight:bold;" />
It seems when it is executed that the "'s (quotes) specifying the element to update "#amt" are being escaped...That's my only guess as to what's going wrong...any ideas?

Help













