Pagination WIP

This commit is contained in:
Qiang Xue
2013-03-05 08:46:03 -05:00
parent b3b8fadfcf
commit 79966ca69a

View File

@ -42,14 +42,14 @@ use Yii;
* View:
*
* ~~~
* <?php foreach($models as $model): ?>
* ...display a model...
* <?php endforeach; ?>
* foreach($models as $model) {
* // display $model here
* }
*
* // display pagination
* <?php $this->widget('yii\web\widgets\LinkPager', array(
* $this->widget('yii\web\widgets\LinkPager', array(
* 'pages' => $pages,
* )) ?>
* ));
* ~~~
*
* @property integer $pageCount Number of pages.