Yii CJuiSlider未显示在布局页面上

时间:2015-03-23 09:15:48

标签: php yii yii-widgets

我正在尝试在布局页面上显示标准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>

可能是什么错误/问题?非常感谢提前!

0 个答案:

没有答案