Deepak Mallah
Deepak Mallah

Reputation: 4076

In Admin Grid : add hidden column to magento adim product grid

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

Answers (1)

Wolfack
Wolfack

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

Related Questions