1

レイアウト ページに標準の 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>

バグ/問題は何ですか? よろしくお願いします!

4

0 に答える 0