LoginSignup
1
1

More than 5 years have passed since last update.

Yii CListViewなどでページネーションするときにページトップへスクロールする方法

Posted at
main.php
<?php
return array(
    ...
    'components'=>array(
        'widgetFactory' => array(
            'widgets' => array(
                'CListView' => array(
                    'itemView' => '_list',
                    'afterAjaxUpdate' => 'function(){$("html,body").animate({scrollTop:0},"fast");}',
                    //'ajaxUpdate' => false,
                    ...

afterAjaxUpdate オプションでやる方法。もうひとつは ajaxUpdate を false にする方法。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1