詳細ビューで画像を表示できますが、これは Yiiトピックで画像を表示できません。imgタグにwidthとaltタグをつけたいです。出来ますか?
私は次のように書きました。
$this->widget('zii.widgets.CDetailView', array(
'data'=>$model,
'htmlOptions'=>array('class'=>'table table-striped responsive-table'),
'attributes'=>array(
'id',
'code',
'name',
'description',
array(
'type'=>'raw',
'width'=>'200',
'alt'=>'hi images',
'value'=> CHtml::image(Yii::app()->request->baseUrl.'/images/products/'.$model->image),
),
'price',
),
));