kartik-v / yii2-grid

Enhanced GridView with various utilities for Yii Framework 2.0
http://demos.krajee.com/grid
Other
557 stars 302 forks source link

How to disable Confirmation Box and direct download pdf ? #942

Closed ashok-groovy closed 4 years ago

ashok-groovy commented 4 years ago

How to disable Confirmation Box and direct download pdf ?

stale[bot] commented 4 years ago

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

kartik-v commented 4 years ago

Set showConfirmAlert within the export property to false if you do not want a confirmation dialog.

echo GridView::widget([
    // other grid config
    'export' => [
        'showConfirmAlert' => false,
        // other export config
    ]
]);