PHPackages                             bupy7/yii2-gridify-view - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Templating &amp; Views](/categories/templating)
4. /
5. bupy7/yii2-gridify-view

AbandonedArchivedYii2-extension[Templating &amp; Views](/categories/templating)

bupy7/yii2-gridify-view
=======================

This is widget extended of ListView with plugin of https://github.com/hongkhanh/gridify. This widget allows load content automatically via Ajax when you reach the end of the page. Content is displayed in table form.

1.0.1(8y ago)201698BSD-3-ClausePHP

Since Aug 28Pushed 8y ago3 watchersCompare

[ Source](https://github.com/bupy7/yii2-gridify-view)[ Packagist](https://packagist.org/packages/bupy7/yii2-gridify-view)[ Docs](https://github.com/bupy7/yii2-gridify-view)[ RSS](/packages/bupy7-yii2-gridify-view/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (2)Dependencies (1)Versions (3)Used By (0)

yii2-gridify-view
=================

[](#yii2-gridify-view)

This is widget extended of ListView with plugin of . This widget allows load content automatically via Ajax when you reach the end of the page. Content is displayed in table form.

[![Screenshot](screenshot.png)](screenshot.png)

Installation
------------

[](#installation)

The preferred way to install this extension is through [composer](http://getcomposer.org/download/).

Either run

```
$ php composer.phar require bupy7/yii2-gridify-view "dev-master"

```

or add

```
"bupy7/yii2-gridify-view": "dev-master"

```

to the **require** section of your **composer.json** file.

How use
=======

[](#how-use)

Added in your controller following code:

```
public function actionIndex()
{
    $searchModel = new ModelSearch();
    $dataProvider = $searchModel->search(Yii::$app->request->queryParams);

    if (Yii::$app->request->isAjax) {
        return $this->renderPartial('_page', [
            'dataProvider' => $dataProvider,
            'onlyItems' => true,
        ]);
    }

    return $this->render('index', [
        'dataProvider' => $dataProvider,
        'searchModel' => $searchModel,
    ]);
}
```

Added in your `index` view following code:

```
$this->render('_page', [
    'dataProvider' => $dataProvider,
]);
```

Added in your `_page` view following code:

```
use bupy7\gridifyview\GridifyView;

echo GridifyView::widget([
    'dataProvider' => $dataProvider,
    'itemView' => '_item',
    'onlyItems' => isset($onlyItems) ? $onlyItems : false,
    'pluginOptions' => [
        'url' => ['/path/to/actin/in/your/controller'],
        'srcNode' => '> div',
        'resizable' => true,
        'width' => '250px',
        'maxWidth' => '350px',
        'margin' => '20px',
    ],
    'events' => [
        'afterLoad' => 'function(){
            alert('Successfully!');
        }',
    ],
]);
```

License
=======

[](#license)

yii2-gridify-view is released under the BSD 3-Clause License.

###  Health Score

33

—

LowBetter than 75% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity22

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity64

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~982 days

Total

2

Last Release

2927d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/f2f9ee20b742a44db8870955cd27b91bb82c14e08dd61a4e096692c9d9d83302?d=identicon)[bupy7](/maintainers/bupy7)

---

Top Contributors

[![bupy7](https://avatars.githubusercontent.com/u/5145037?v=4)](https://github.com/bupy7 "bupy7 (45 commits)")

---

Tags

imagegridviewyii2extensionwidgetboxListView

### Embed Badge

![Health badge](/badges/bupy7-yii2-gridify-view/health.svg)

```
[![Health](https://phpackages.com/badges/bupy7-yii2-gridify-view/health.svg)](https://phpackages.com/packages/bupy7-yii2-gridify-view)
```

###  Alternatives

[kartik-v/yii2-widget-select2

Enhanced Yii2 wrapper for the Select2 jQuery plugin (sub repo split from yii2-widgets).

3279.7M191](/packages/kartik-v-yii2-widget-select2)[kartik-v/yii2-detail-view

Enhanced Yii 2 Detail View widget with special Bootstrap styles, ability to edit data, and more.

701.1M41](/packages/kartik-v-yii2-detail-view)[kartik-v/yii2-widget-activeform

Enhanced Yii2 active-form and active-field with full bootstrap styling support (sub repo split from yii2-widgets).

647.3M62](/packages/kartik-v-yii2-widget-activeform)[marekpetras/yii2-calendarview-widget

CalendarView widget for Yii 2 Framework.

2229.1k](/packages/marekpetras-yii2-calendarview-widget)[kartik-v/yii2-number

Number control and format mask input for Yii2 Framework.

22498.3k12](/packages/kartik-v-yii2-number)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
