2016-06-21 5 views
0

웹 응용 프로그램에서 기본값을 CHtml :: textArea로 설정하고 싶습니다. 내보기에서 ,yii의 CHtml :: textArea에서 값을 설정하는 방법

<?php echo CHtml::textArea('answer' . $no, '', array('rows' => 6, 'cols' => 50, 'class' => "form-control",'value'=>$exam->answer)); ?> 

그러나,이 작동하지 않습니다. 어떻게해야합니까?

답변

2

당신은 두 번째 매개 변수로 직접 설정할 수 있습니다

CHtml::textArea('answer' . $no, $exam->answer, array(
    'rows' => 6, 'cols' => 50, 'class' => "form-control") 
); 

은 자세한 내용은 CHtml::textArea를 참조하십시오.

+0

고맙습니다. 효과가있다. – Arya