Yii v2 snippet guide

Comparing #228 with #229

Revision #229 was created by rackycz rackycz on Aug 21, 2020, 6:51:44 PM.

Export to CSV

Content

[...]
'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";
[...]