PHPackages                             futuretek/yii2-grid - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. futuretek/yii2-grid

ActiveYii2-extension[Utility &amp; Helpers](/categories/utility)

futuretek/yii2-grid
===================

Custom Futuretek Grid

1.1.0(4y ago)0195Apache-2.0PHP &gt;=5.4.0

Since Oct 31Compare

[ Source](https://github.com/futuretek-solutions-ltd/yii2-ext-grid)[ Packagist](https://packagist.org/packages/futuretek/yii2-grid)[ Docs](https://www.futuretek.cz/)[ RSS](/packages/futuretek-yii2-grid/feed)WikiDiscussions Synced today

READMEChangelogDependencies (3)Versions (3)Used By (0)

Yii2 FTS Grid
=============

[](#yii2-fts-grid)

Custom Futuretek Grid

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

[](#installation)

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

Either run

```
php composer.phar require --prefer-dist futuretek/yii2-grid "*"

```

or add

```
"futuretek/yii2-grid": "*"

```

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

Usage
-----

[](#usage)

Once the extension is installed, simply use it in your code by :

```
\futuretek\grid\GridView::widget(['dataProvider' => $dataProvider])
```

Sortable
--------

[](#sortable)

- Add to your database new `unsigned int` attribute, such `position`.
- Add new behavior in the AR model, for example:

```
use himiklab\sortablegrid\SortableGridBehavior;

public function behaviors()
{
    return [
        'sort' => [
            'class' => SortableGridBehavior::className(),
            'sortableAttribute' => 'position'
        ],
    ];
}
```

- Add action in the controller, for example:

```
use himiklab\sortablegrid\SortableGridAction;

public function actions()
{
    return [
        'sort' => [
            'class' => SortableGridAction::className(),
            'modelName' => Model::className(),
        ],
    ];
}
```

- Add parameter `sortable` to GridView widget config
- Modify default `sortableAction` if needed

```
\futuretek\grid\GridView::widget([
    'sortable' => true,
    'sortableAction' => 'sortMyGridBitch'
]);
```

- You can also subscribe to the JS event 'sortableSuccess' generated widget after a successful sorting.

###  Health Score

27

—

LowBetter than 47% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity59

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 69.2% 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 ~1892 days

Total

2

Last Release

1639d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/1ce67c863775f4dd7237db0547fe39aaf85c9841f34773d67e88f62dcf948ae4?d=identicon)[futuretek](/maintainers/futuretek)

---

Top Contributors

[![lukascernydis](https://avatars.githubusercontent.com/u/3111717?v=4)](https://github.com/lukascernydis "lukascernydis (9 commits)")[![petrleocompel](https://avatars.githubusercontent.com/u/9423543?v=4)](https://github.com/petrleocompel "petrleocompel (4 commits)")

---

Tags

gridyii2extension

### Embed Badge

![Health badge](/badges/futuretek-yii2-grid/health.svg)

```
[![Health](https://phpackages.com/badges/futuretek-yii2-grid/health.svg)](https://phpackages.com/packages/futuretek-yii2-grid)
```

###  Alternatives

[kartik-v/yii2-grid

Yii 2 GridView on steroids. Various enhancements and utilities for the Yii 2.0 GridView widget.

5546.9M182](/packages/kartik-v-yii2-grid)[mickgeek/yii2-actionbar

A control bar with bulk actions for the GridView widget.

3445.8k](/packages/mickgeek-yii2-actionbar)[yiister/yii2-advanced-grid

Advanced GridView extension for Yii framework 2

4712.6k](/packages/yiister-yii2-advanced-grid)

PHPackages © 2026

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