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