Questions tagged [yii2-dynagrid]
8 questions
2
votes
1 answer
How to add order key for DynaGrid?
I have an ActionColumn for each tables. I need to add order => ORDER_FIX_RIGHT per table for ActionColumn. How can i add order key in my DynaGridViewAdvanced?
I tried to write:
protected function applyColumns()
{
$columns = [];
…

mepihindeveloper
- 195
- 1
- 14
2
votes
0 answers
Yii2 : Image not export to excel sheet in Kartik GridView
I have used the Yii2-grid and Yii2-dynagrid. when I go to export image column from grid view but image column not exported and it shows blank cell in excel sheet.
Here my code.
$model->p_image is live server image url like…

GAMITG
- 3,810
- 7
- 32
- 51
0
votes
1 answer
yii2-DynaGrid After changing attribute label, this column becomes hidden for all users
After changing class, header, label, or attribute.
Each user must go to "Personalize grid settings" and move this column to visible. I want to fix it automatically.

Mike S
- 192
- 3
- 9
0
votes
0 answers
How to fix filterModel error in kartik\dynagrid\DynaGrid?
Our code has an implementation of filtering the table using ArrayDataProvider. When working with DynaGrid, this error occurs. How to make ArrayDataProvider work with DynaGrid?
Search method in search class:
public function search(array $params) {
…

mepihindeveloper
- 195
- 1
- 14
0
votes
0 answers
How to extend the class kartik\dynagrid\DynaGrid?
Installed the DynaGrid plugin and ran into the problem of expanding it. I created my own class DynaGridViewAdvanced, which is located on the path modules/appWidgets/widgets/grid and has namespace app\modules\appWidgets\widgets\grid.
The class code…

mepihindeveloper
- 195
- 1
- 14
0
votes
1 answer
Yii2 DynaGrid - how to hide formats from export menu
How to hide some formats from export menu in DynaGrid. I was tried settings for GridView widget but doesn't work. Formats are still visible.
'exportConfig' => [
GridView::CSV => ['label' => 'Save as CSV'],
GridView::HTML => [],
…

solinskip
- 11
- 1
0
votes
2 answers
Yii2 GridView column data display with comma separation format
I am using Kartik GridView in yii2 project.
When I specify column format as decimal it shows the output as 112,233,335.
I want this number as 11,22,33,335.
How can I do so ? I also want page summery for this column in the same comma separated…

arun
- 165
- 1
- 17
0
votes
1 answer
kartik DynaGrid select2 filter not render
my setup column using kartik DynaGrid Widget to display data on yii2. but filter (FILTER_SELECT2) not render on my table. Can someone help me? Please.
'class' => 'kartik\grid\DataColumn',
'attribute' => 'city_id',
'label' => 'City',
…

user3331671
- 21
- 2