kartik-v / yii2-export

A library to export server/db data in various formats (e.g. excel, html, pdf, csv etc.)
http://demos.krajee.com/export
Other
165 stars 126 forks source link

can't open EXCEL_X export file when ExportMenu inside ActiveForm #316

Closed aikon2 closed 4 years ago

aikon2 commented 4 years ago

I have TabularForm and ActiveForm for submit, at toolbar ExportMenu::widget. I can download/export to all format, but:

I guess because ExportMenu::widget inside ActiveForm and effect for this widget. any solution in this case?

<?php ActiveForm::begin([...]); echo TabularForm::widget([ ... 'gridSettings' => [ 'toolbar' => [ ['content' => ExportMenu::widget([ 'dataProvider' => $dataProvider, 'columns' => [...], ]) .... ] ]) ActiveForm::end([]) ?>