Reputation: 691
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
Reputation: 22756
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