Kartik's star-rating widget not working in foreach construction in Yii2

futur1st
  • Image with problem form site:

enter image description here

QUESTION: Why instead of stars, appear loading symbols (stars are not displayed), for all elements, except first

CODE:

foreach($posts as $post):
    <span class="star-container">  

        debug($post->post_rate);
        echo StarRating::widget([
            'model' => $post,
            'attribute' => 'post_rate',
            'pluginOptions' => [
                    'size'=>'xs',
                    'filledStar' => '&#x2605;',
                    'emptyStar' => '&#x2606;',
                ]
        ]);
    </span>
endforeach;
sherlocked

Try to add ids or names to your widgets.

echo StarRating::widget([
            'model' => $post,
            'id' => $post->id
            'attribute' => 'post_rate',
            'pluginOptions' => [
                    'size'=>'xs',
                    'filledStar' => '&#x2605;',
                    'emptyStar' => '&#x2606;',
                ]
        ]);

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related