gpt4 book ai didi

forms - Symfony2表格定制

转载 作者:行者123 更新时间:2023-12-03 11:44:56 27 4
gpt4 key购买 nike

我想要这样的东西:

<textarea rows="30" cols="70"  class="TextBox" style="height:100px;">

但是在我的symfony2应用程序中而不是在 Twig 模板中
我尝试了这个:
        $builder->add('history', 'textarea', array('label' => 'Nome' , 'max_length' => 1048576 , 'rows' = 30 , 'cols' = 70));

但是我没有“行”和“cols”的选择...

在 Twig 上,我想要这样的东西:
<label for="history">{{'form_anamnese_history'}}</label>
{{ form_widget(form.history) }}

成为类似论坛帖子的文本框!

最佳答案

使用attr数组,如documentation中所述:

$builder->add('history', 'textarea', array(
'attr' => array('cols' => '5', 'rows' => '5'),
));

关于forms - Symfony2表格定制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12959679/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com