quardas
quardas

Reputation: 691

Symfony 1.4 (FORMS) is it possible to set value attribute by sfWidgetFormInputText

I want to predefine the TEXT-INPUT field - attribute VALUE. Is it possible to do that by sfWidgetFormInputText of other option in the setup method?

Upvotes: 0

Views: 1111

Answers (1)

j0k
j0k

Reputation: 22756

Read the doc.

class ContactForm extends BaseForm
{
  public function configure()
  {
    // ...

    $this->setDefault('email', 'Your Email Here');

    $this->setDefaults(array('email' => 'Your Email Here', 'name' => 'Your Name Here'));
  }
}

Upvotes: 2

Related Questions