'I use kartik widget(ExportMenu) in Yii2. But I have very much data. I can not download data. help to find alternative variation ExportMenu
echo ExportMenu::widget([
'dataProvider' => $dataProvider,
'columns' => $gridColumns,
]);
please help to find alternative export menu
Solution 1:[1]
Try with batch export. See the link or example below - https://demos.krajee.com/export-demo-dtl/batch-loading
echo ExportMenu::widget([
'dataProvider' => $dataProvider,
'columns' => $gridColumns,
'batchSize' => 10,
'target' => '_blank',
])
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | vvpanchev |