Page Loading

hi how add page loading using scroll bar…

i have lot of see using this method .when scroll move,data is load from data base how do this…?

Hi,

If you mean something like that

http://www.inserthtml.com/demo/scroll-pagination/

You should to use ajax that load the extra part of html

On server side you have to write an action like that


function actionFetchExtra($number) {

if ($number==1) $this->renderPartial('part1');

if ($number==2) $this->renderPartial('part2');

if ($number==3) $this->renderPartial('part3');

Yii::app()->end();

}