我试图在布局页面上显示一个标准的 Yii 小部件 [CJuiSlider] 用于排名价格(价格“从”和价格“到”):
<strong style="margin-bottom: 8px; display: block;">Price</strong>
<span style="color: grey">from</span>
<input type="text" name="filter[price_min]" id="price-from" />
<span style="color: grey">to</span>
<input type="text" name="filter[price_max]" id="price-to" />
<span style="color: grey">$</span>
<?php
// This values in widget - only for test
$this->widget('zii.widgets.jui.CJuiSlider', array(
'options'=>array(
'range' => true,
'min' => 10,
'max' => 20,
'values' => array( 10, 20 ),
'slide'=>'js:function(event, ui) {
$("#price-from").val(ui.values[0]);
$("#price-to").val(ui.values[1]);
}',
),
));
?>
但是这个小部件没有显示:(在源 HTML 代码中我看到:
<div id="yw1"></div>
什么可能是错误/问题?提前谢谢了!