Symfony形式:如何为textarea小部件设置默认值

时间:2010-05-02 12:30:16

标签: html forms symfony1 textarea

我在Ubuntu 9.10上使用Symfony 1.3.2

我想设置textarea小部件的默认值,数据从adb。

读取

模板中的代码片段看起来像这样:

<?php $form['notes']->render(); ?>

API文档不显示如何执行此操作 - 有人知道如何执行此操作吗?

1 个答案:

答案 0 :(得分:11)

您可以在动作或表单类中使用它:

$this->form = new yourForm(); // If its in your action

$text = // data for prepopulating field, from db or anywhere

$this->form->setDefault('notes', $text);

...或者如果您有多个字段:

$this->form->setDefaults(array('notes' => $text, 'more_notes' => $more_text));

或者如果您更喜欢在表单类配置中使用窗口小部件声明它一次(我认为这是正确的):

$this->setWidgets(array(
  // widgets
  'notes' => new sfWidgetFormTextArea(array('default' => $text)),
  // widgets
));