PHPackages                             megapixel23/kendo-yii2-adapter - 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. megapixel23/kendo-yii2-adapter

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

megapixel23/kendo-yii2-adapter
==============================

Kendo Grid adapter for Yii2

0433PHP

Since Dec 15Pushed 10y ago1 watchersCompare

[ Source](https://github.com/MEGApixel23/kendo-yii2-adapter)[ Packagist](https://packagist.org/packages/megapixel23/kendo-yii2-adapter)[ RSS](/packages/megapixel23-kendo-yii2-adapter/feed)WikiDiscussions master Synced today

READMEChangelogDependenciesVersions (1)Used By (0)

Kendo Yii2 Adapter
==================

[](#kendo-yii2-adapter)

It is a adapter for Yii2 that transforms Kendo Grid`s frontend requests into ActiveQuery on backend. Supports all KendoGrid`s filtering, sorting, searching etc.

[Kendo Grid docs](http://demos.telerik.com/kendo-ui/grid/index)
---------------------------------------------------------------

[](#kendo-grid-docs)

Instalation
-----------

[](#instalation)

1. Add following line into `require` section in your `composer.json`:

```
    "require": {
        "megapixel23/kendo-yii2-adapter": "dev-master"
    }
```

2. If you want to install package directly from GitHub, you need to add following line into `repositories` section in your `composer.json` to set up composer`s package source path:

```
    "repositories": [
        {
            "type": "git",
            "url": "https://github.com/MEGApixel23/kendo-yii2-adapter"
        }
    ]
```

Basic Usage
-----------

[](#basic-usage)

Frontend

```
var grid = $("#grid").kendoGrid({
    dataSource: {
        type: 'json',
        transport: {
            read: '/custom/action/handler'
        },
        schema: {
            data: 'data',
            total: 'total'
        },
        pageSize: 20,
        serverPaging: true,
        serverFiltering: true
    },
    filterable: {
        mode: 'row'
    },
    pageable: true
}).data('kendoGrid');
```

Backend

```
public function actionCustomActionHandler()
{
    if (Yii::$app->request->isAjax) {
        Yii::$app->response->format = 'json';
        $query = Items::find();
        $provider = new KendoDataProvider([
            'query' => $query
        ]);

        return [
            'data' => $provider->getModels(),
            'total' => $query->count()
        ];
    }
}
```

###  Health Score

22

—

LowBetter than 21% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity15

Limited adoption so far

Community4

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

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.

### Community

Maintainers

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

---

Tags

kendokendo-yii2-adapteryiiyii2-extension

### Embed Badge

![Health badge](/badges/megapixel23-kendo-yii2-adapter/health.svg)

```
[![Health](https://phpackages.com/badges/megapixel23-kendo-yii2-adapter/health.svg)](https://phpackages.com/packages/megapixel23-kendo-yii2-adapter)
```

###  Alternatives

[zoha/laravel-meta

a package for working with models meta

236133.9k](/packages/zoha-laravel-meta)[instasent/sms-counter-php

SMS Counter PHP Class Library which detects encoding of an SMS message text, counts the characters as per the encoding and gives page limit information.

501.4M4](/packages/instasent-sms-counter-php)[mediawiki/semantic-breadcrumb-links

An extension to Semantic MediaWiki allowing to build breadcrumb links from an attributive property filter

2021.9k](/packages/mediawiki-semantic-breadcrumb-links)

PHPackages © 2026

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