Browse Source

Pagination WIP

tags/2.0.0-beta
Qiang Xue 12 years ago
parent
commit
79966ca69a
  1. 10
      framework/web/Pagination.php

10
framework/web/Pagination.php

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

Loading…
Cancel
Save