Reputation: 4076
i am trying to add a hidden column to admin product grid. is there a way by which we can add hidden column. please provide suggestion.
Thanks
Upvotes: 1
Views: 3034
Reputation: 2769
You can do this by adding 'no-display' class while adding the column.
The code for this is as below:
$this->addColumn('column_name', array(
'header' => 'Column Header',
'align' => 'left',
'width' => '120px',
'index' => 'column_index',
'type' => 'text',
'column_css_class'=>'no-display',
'header_css_class'=>'no-display'
));
Upvotes: 2