ExportMenu::TARGET_BLANK
. Display export menu dropdown embedded within the toolbar of kartik\grid\GridView as a separate menu. Uses the plugin ability of kartik\grid\GridView. Note, in the example below, the Full Menu from yii2-export is generated along with the inbuilt Page Menu from yii2-grid. In addition, this example includes a pjax enabled grid. You need to set ExportMenu::pjaxContainerId
and GridView::pjaxSettings['options']['id']
to the same value.Not seeing the updated content on this page! Hard refresh your browser to clean cache for this page (e.g. SHIFT-F5 on Windows Chrome)
use kartik\export\ExportMenu; use kartik\grid\GridView; use kartik\helpers\Html; $fullExportMenu = ExportMenu::widget([ 'dataProvider' => $dataProvider, 'columns' => $gridColumns, 'target' => ExportMenu::TARGET_BLANK, 'pjaxContainerId' => 'kv-pjax-container', 'exportContainer' => [ 'class' => 'btn-group mr-2 me-2' ], 'dropdownOptions' => [ 'label' => 'Full', 'class' => 'btn btn-outline-secondary btn-default', 'itemsBefore' => [ '<div class="dropdown-header">Export All Data</div>', ], ], ]); echo GridView::widget([ 'dataProvider' => $dataProvider, 'columns' => $gridColumns, 'pjax' => true, 'pjaxSettings' => ['options' => ['id' => 'kv-pjax-container']], 'panel' => [ 'type' => GridView::TYPE_PRIMARY, 'heading' => '<h3 class="panel-title"><i class="fas fa-book"></i> Library</h3>', ], // set a label for default menu 'export' => [ 'label' => 'Page', ], 'exportContainer' => [ 'class' => 'btn-group mr-2 me-2' ], // your toolbar can include the additional full export menu 'toolbar' => [ '{export}', $fullExportMenu, [ 'content'=> Html::button('<i class="fas fa-plus"></i>', [ 'class' => 'btn btn-success', 'title' => Yii::t('kvgrid', 'Add Book'), 'onclick' => 'alert("This will launch the book creation form.\n\nDisabled for this demo!");' ]) . ' '. Html::a('<i class="fas fa-redo"></i>', ['grid-demo'], [ 'class' => 'btn btn-outline-secondary btn-default', 'title'=>Yii::t('kvgrid', 'Reset Grid'), 'data-pjax' => 0, ]), 'options' => ['class' => 'btn-group'] ], ] ]);
$gridColumns = [ ['class' => 'kartik\grid\SerialColumn'], 'id', 'name', [ 'attribute'=>'author_id', 'label'=>'Author', 'vAlign'=>'middle', 'width'=>'190px', 'value'=>function ($model, $key, $index, $widget) { return Html::a($model->author->name, '#', []); }, 'format'=>'raw' ], 'color', 'publish_date', 'status', ['attribute'=>'buy_amount','format'=>['decimal',2], 'hAlign'=>'right', 'width'=>'110px'], ['attribute'=>'sell_amount','format'=>['decimal',2], 'hAlign'=>'right', 'width'=>'110px'], ['class' => 'kartik\grid\ActionColumn', 'urlCreator'=>function(){return '#';}] ];
Comments & Discussion
Note
You can now visit the Krajee Webtips Q & A forum for searching OR asking questions OR helping programmers with answers on these extensions and plugins. For asking a question click here. Select the appropriate question category (i.e. Krajee Plugins) and choose this current page plugin in the question related to field.
The comments and discussion section below are intended for generic discussions or feedback for this plugin. Developers may not be able to search or lookup here specific questions or tips on usage for this plugin.