DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Set Attribute Of All Fields In Symfony Form
// description of your code here
[code]
class ClientForm extends BaseClientForm
{
public function configure() {
$fields = $this->getWidgetSchema()->getFields();
foreach ($fields as $f) {
$f->setAttribute("class", "client_form_field");
}
}
}
[/code]





