We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33f5d12 commit 929fdabCopy full SHA for 929fdab
README.md
@@ -132,15 +132,15 @@ $(".exportBtn").on("click", function(e){
132
// append params to url + export type (Excel/PDF)
133
$(this).attr('href', _href + params + '/' + $(this).text());
134
window.location.href = $(this).attr('href');
135
-})
+});
136
```
137
138
```php
139
<?php
140
use \DataTables\DataTable;
141
142
class TestController extends \Phalcon\Mvc\Controller {
143
- public function exportAction($type) {
+ public function exportAction($filters, $type) {
144
$builder = $this->modelsManager->createBuilder()
145
->columns('id, name, email, balance')
146
->from('Example\Models\User');
0 commit comments