html – Symfony表单:如何为textarea小部件设置默认值

前端之家收集整理的这篇文章主要介绍了html – Symfony表单:如何为textarea小部件设置默认值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在Ubuntu 9.10上使用Symfony 1.3.2

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

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

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

API文档不显示如何执行此操作 – 有谁知道如何执行此操作?

解决方法

您可以在动作或表单类中使用它:
$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
));
原文链接:https://www.f2er.com/html/225695.html

猜你在找的HTML相关文章