我想要这样的东西:
<textarea rows="30" cols="70" class="TextBox" style="height:100px;">
但在我的symfony2应用程序,而不是在树枝模板
我试过这个:
$builder->add('history','textarea',array('label' => 'Nome','max_length' => 1048576,'rows' = 30,'cols' = 70));
但是我得到“行”和“列”不是选项…
在树枝上,我想要这样的东西:
<label for="history">{{'form_anamnese_history'}}</label> {{ form_widget(form.history) }}
成为一个论坛帖子的文本框!
解决方法
使用attr数组,如
documentation中所述:
$builder->add('history',array( 'attr' => array('cols' => '5','rows' => '5'),));