PHPackages                             jinowom/yii2wajaxcrud - 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. [Database &amp; ORM](/categories/database)
4. /
5. jinowom/yii2wajaxcrud

ActiveYii2-extension[Database &amp; ORM](/categories/database)

jinowom/yii2wajaxcrud
=====================

Gii CRUD template for Single Page Ajax Administration for yii2

v1.0.2(1y ago)02Apache-2.0PHPPHP &gt;=7.1

Since Feb 14Pushed 1y agoCompare

[ Source](https://github.com/jinowom/yii2wajaxcrud)[ Packagist](https://packagist.org/packages/jinowom/yii2wajaxcrud)[ RSS](/packages/jinowom-yii2wajaxcrud/feed)WikiDiscussions master Synced 1mo ago

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

yii2wajaxcrud
=============

[](#yii2wajaxcrud)

[![Latest Stable Version](https://camo.githubusercontent.com/1bdebaff915bca400d05bac58229b77b7d7b316a514ba6208710386e7bb3b5fd/68747470733a2f2f706f7365722e707567782e6f72672f776f64726f772f7969693277616a6178637275642f762f737461626c65)](https://packagist.org/packages/wodrow/yii2wajaxcrud)[![License](https://camo.githubusercontent.com/2551514cfa5f1347839f4a0aa9f4791131ffe03d168a3f86840855d501b14540/68747470733a2f2f706f7365722e707567782e6f72672f776f64726f772f7969693277616a6178637275642f6c6963656e7365)](https://packagist.org/packages/wodrow/yii2wajaxcrud)[![Total Downloads](https://camo.githubusercontent.com/a4c9f5d7c2e98fc130f085955f2624ebec060e284d9027e623781480dc865231/68747470733a2f2f706f7365722e707567782e6f72672f776f64726f772f7969693277616a6178637275642f646f776e6c6f616473)](https://packagist.org/packages/wodrow/yii2wajaxcrud)

Gii CRUD template for Single Page Ajax Administration for yii2

- Requires yiisoft/yii2-bootstrap5:"^2.0.4"
- Requires yiisoft/yii2-bootstrap:"^2.0.0"

Features
--------

[](#features)

- Create, read, update, delete in onpage with Ajax
- Bulk delete suport
- Pjax widget suport
- Export function(pdf,html,text,csv,excel,json)
- Editable suport
- Daterange suport

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

[](#installation)

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

Either run

```
php composer.phar require --prefer-dist jinowom/yii2wajaxcrud "^1.0.0"
or
php composer.phar require --prefer-dist jinowom/yii2wajaxcrud "^1.0.2"

```

or add

```
"jinowom/yii2wajaxcrud": "^1.0.0"
or
"jinowom/yii2wajaxcrud": "^1.0.2"

```

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

Usage
-----

[](#usage)

For first you must enable Gii module Read more about [Gii code generation tool](http://www.yiiframework.com/doc-2.0/guide-tool-gii.html)

Because this extension used [kartik-v/yii2-grid](https://github.com/kartik-v/yii2-grid) extensions so we must config gridview module before

Let 's add into modules config in your main config file

```
'modules' => [
    'gridview' =>  [
        'class' => '\kartik\grid\Module'
    ]
]
```

gii config like

```
$config['bootstrap'][] = 'gii';
$config['modules']['gii'] = [
    'class' => 'yii\gii\Module',
];
$config['modules']['gii']['generators']['wodrowmodel'] = [
    'class' => \jinowom\wajaxcrud\generators\model\Generator::class,
    'showName' => "YOUR MODEL GENERATOR",
];
$config['modules']['gii']['generators']['wodrowwajaxcrud'] = [
    'class' => \jinowom\wajaxcrud\generators\crud\Generator::class,
    'showName' => "YOUR AJAX CRUD GENERATOR",
];
```

You can then access Gii through the following URL:

and you can see **YOUR AJAX CRUD GENERATOR**

[![exp1](https://camo.githubusercontent.com/87c424f6a4b5cee2824cd7b2031236e897ca5cc37b0f121543953a3648cfaf73/68747470733a2f2f692e6c6f6c692e6e65742f323031392f30352f30392f356364336137633263623935612e706e67)](https://camo.githubusercontent.com/87c424f6a4b5cee2824cd7b2031236e897ca5cc37b0f121543953a3648cfaf73/68747470733a2f2f692e6c6f6c692e6e65742f323031392f30352f30392f356364336137633263623935612e706e67)[![exp2](https://camo.githubusercontent.com/0055a85757b49a2b7b4fd4b66082485f06e81e76c3c772e6890e851d40fba8f4/68747470733a2f2f692e6c6f6c692e6e65742f323031392f30352f30392f356364336137633263656537612e706e67)](https://camo.githubusercontent.com/0055a85757b49a2b7b4fd4b66082485f06e81e76c3c772e6890e851d40fba8f4/68747470733a2f2f692e6c6f6c692e6e65742f323031392f30352f30392f356364336137633263656537612e706e67)[![exp3](https://camo.githubusercontent.com/fa8c0475932e7c3e00b8bced6731f004556d69fe3380eab39cd89ad0329fd2d3/68747470733a2f2f692e6c6f6c692e6e65742f323031392f30352f30392f356364336137633264313461392e706e67)](https://camo.githubusercontent.com/fa8c0475932e7c3e00b8bced6731f004556d69fe3380eab39cd89ad0329fd2d3/68747470733a2f2f692e6c6f6c692e6e65742f323031392f30352f30392f356364336137633264313461392e706e67)

Others
------

[](#others)

```
#只对github.com
git config --global http.https://github.com.proxy socks5://127.0.0.1:1080

```

感谢
--

[](#感谢)

```
#wodrow
#Kartik Visweswaran

```

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance45

Moderate activity, may be stable

Popularity2

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity34

Early-stage or recently created project

 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 ~11 days

Total

3

Last Release

431d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/3b263a1a85f4ed56baa2458ee30abe2a215f2acec53715c57c3bacc91693de4a?d=identicon)[charleslee](/maintainers/charleslee)

---

Top Contributors

[![jinostart](https://avatars.githubusercontent.com/u/41822778?v=4)](https://github.com/jinostart "jinostart (7 commits)")

---

Tags

databasetemplateyii2extensionajaxcrudgii

### Embed Badge

![Health badge](/badges/jinowom-yii2wajaxcrud/health.svg)

```
[![Health](https://phpackages.com/badges/jinowom-yii2wajaxcrud/health.svg)](https://phpackages.com/packages/jinowom-yii2wajaxcrud)
```

###  Alternatives

[johnitvn/yii2-ajaxcrud

Gii CRUD template for Single Page Ajax Administration for yii2

97209.6k16](/packages/johnitvn-yii2-ajaxcrud)

PHPackages © 2026

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