Hello, i'm new too, but i think that i could help you, I'm assuming
that you are using Doctrine.

In relation with your 2nd question, Yes you can. To change the labels
text you need to edit the {symfony root}/lib/form/doctrine/
CustomerForm.class.php there you can edit some stuff of your Customer
Form, to edit the Labels insert the following method "configure"
inside the class.

 public function configure()
  {
    $this->widgetSchema->setLabels(array(
                  'customerfname' => 'First Name',
        ));
  }

-- 
If you want to report a vulnerability issue on symfony, please send it to 
security at symfony-project.com

You received this message because you are subscribed to the Google
Groups "symfony users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en

Reply via email to