%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
yii2-ajaxcrud
=============
[](https://packagist.org/packages/johnitvn/yii2-ajaxcrud)
[](https://packagist.org/packages/johnitvn/yii2-ajaxcrud)
[](https://packagist.org/packages/johnitvn/yii2-ajaxcrud)
Gii CRUD template for Single Page Ajax Administration for yii2

Features
------------
+ Create, read, update, delete in onpage with Ajax
+ Bulk delete suport
+ Pjax widget suport
+ Export function(pdf,html,text,csv, excel,json)
Installation
------------
The preferred way to install this extension is through [composer](http://getcomposer.org/download/).
Either run
```
php composer.phar require --prefer-dist johnitvn/yii2-ajaxcrud "@dev"
```
or add
```
"johnitvn/yii2-ajaxcrud": "^2.1"
```
to the require section of your `composer.json` file.
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
```php
'modules' => [
'gridview' => [
'class' => \kartik\grid\Module::class,
'bsVersion' => '4.x', // or '3.x'
// 'downloadAction' => 'gridview/export/download',
// 'i18n' => [],
// 'exportEncryptSalt' => 'tG85vd1',
]
]
```
Note: Font Awesome icons not required! See [Bootstrap icons](https://demos.krajee.com/grid#bootstrap-icons)!
You can then access Gii through the following URL:
http://localhost/path/to/index.php?r=gii
and you can see <b>Ajax CRUD Generator</b>
Lets contibute to keep it updated and make it useful for all friends.