Re: [symfony-users] sfWidgetFormInputHidden default value

2010-10-08 Thread Manu SW
Hi ! Thanks a lot for your help. Replying below ... Gareth McCumskey wrote, On 10/8/10 8:45 AM: symfony's schema can create be used to automate this for you. In your schem.yml just create a null-value created_at field: table_name: field1: { ... } field2: { } created_at: ~ symfo

Re: [symfony-users] sfWidgetFormInputHidden default value

2010-10-08 Thread Gareth McCumskey
symfony's schema can create be used to automate this for you. In your schem.yml just create a null-value created_at field: table_name: field1: { ... } field2: { } created_at: ~ symfony will automatically add the date into the created_at field of your table everytime a record is cre

Re: [symfony-users] sfWidgetFormInputHidden default value

2010-10-08 Thread Christian
imo, u dont want to set date_created as hidden field. unset this field in your form and set this object attribute if u save this new object. $myObject->setDateCreated(new DateTime()); $myObject->save(); Am 08.10.2010 00:04, schrieb Manu SW: Hi again, I am back with another problem in the sam

[symfony-users] sfWidgetFormInputHidden default value

2010-10-07 Thread Manu SW
Hi again, I am back with another problem in the same form : I can't get a hidden field to get initialized with a default value. This is a portion of my code : $this->setWidgets(array( 'object_id'=> new sfWidgetFormPropelChoice( array('model' => 'BioObject', 'add_empty