Difference between #228 and #229 of
Yii v2 snippet guide

Revision #229 has been created by rackycz on Aug 21, 2020, 6:51:44 PM with the memo:

Export to CSV
« previous (#228) next (#230) »

Changes

Title unchanged

Yii v2 snippet guide

Category unchanged

Tutorials

Yii version unchanged

2.0

Tags unchanged

tutorial,beginner,yii2

Content changed

[...]
'inline' => false
]);
}
```

If you want
to use it to export data from your GridView, modify your action like this:

```php
[...]
```

In my code above
are there were used 2 methods in the model which export things to the CSV format. My implementatino is here:

```php
public static function getCsvHeader() {
$result = [];
$result[] = "ID";
[...]
7 0
4 followers
Viewed: 254 690 times
Version: 2.0
Category: Tutorials
Written by: rackycz
Last updated by: rackycz
Created on: Sep 19, 2019
Last updated: 5 months ago
Update Article

Revisions

View all history