Yii CJuiSlider не отображается на странице макета

Я пытаюсь отобразить стандартный виджет 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" /> &nbsp;
<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>

В чем может быть ошибка / проблема? Спасибо заранее!

1

Решение

Задача ещё не решена.

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]