how can I hide values in CGridView ??
I already tried to hide a column like this:
'htmlOptions'=>array('style'=>'display:none'),
it works but the Column header is still visible.
then I tried to put values into hidden fields inside a template:
'class'=>'CButtonColumn', 'template'=>'{myButton}<input type="hidden" name="hid" value="'.$data->hid.'">',
but at this point the $data->hid is empty. WHY?
thx in advance.