The Symfony form component is a standalone library that can be used outside of Symfony2 projects.
13
votes
3answers
1k views
Symfony2 Form Dynamic Choice Field With EAV Returned Values
I am creating an E-Commerce Bundle with Symfony2 and Doctrine2. I am applying EAV approach for the product features and product values for unlimited features. For this, I have three basic entities: ...
12
votes
3answers
6k views
Simple check if form field has errors in Twig template
In Twig template I check if a field has an error like this:
{% if form.points.get('errors') is not empty %}
Is there any method like:
{% if form.points.hasErrors() %}
to do it simpler? It's not ...
10
votes
1answer
5k views
Description of Symfony2 form events?
This is the FormEvents class from Symfony2 repository on github. It's linked from the main article, How to Dynamically Generate Forms Using Form Events.
Anyone konws exactly when these events are ...
10
votes
7answers
16k views
Symfony2 Setting a default choice field selection
I am creating a form in the following manner:
$form = $this->createFormBuilder($breed)
->add('species', 'entity', array(
'class' => 'BFPEduBundle:Item',
...
9
votes
2answers
553 views
Symfony2 and Doctrine2 : populate form with two Entity (a complicated scenario)
I have 5 entities:
User,
Person,
UserAffiliation,
PersonAffiliation and
Affiliation
Here is the schema:
Some details:
A WebUser is a Person who is registered to the website. For each ...
8
votes
5answers
22k views
How to get the request parameters in symfony2
i am very much new to symfony.In other languages like java and others i use request.getParameter('parmeter name') to get the values. Is there anything similar that we can do with symfony2. I have seen ...
8
votes
1answer
3k views
Symfony validate form with mapped false form fields
I've got a form with extra fields added with the option mapped to false. But when I try to validate my form, it won't pass indicating "this value is not valid" above these specific form fields. Isn't ...
8
votes
3answers
3k views
Symfony2 entity field type alternatives to “property” or “__toString()”?
Using Symfony2 entity field type one should specify property option:
$builder->add('customers', 'entity', array(
'multiple' => true,
'class' => 'AcmeHelloBundle:Customer',
...
8
votes
2answers
1k views
Cascade Validation not working on third layer of a form
I have a form with 3 layers:
First Layer is the container for the games:
class GameListType extends AbstractType {
public function buildForm(FormBuilderInterface $builder, array $options) {
...
7
votes
2answers
3k views
Symfony 2 : Add a custom form element, not in an Entity
I work with Symfony2 and I would like to create a registration form.
I don't want to use FOSUserBundle.
So, I create an Entity Account (with fields : username, password, email...) and I create the ...
6
votes
1answer
2k views
Difference between ObjectManager and EntityManager in Symfony2?
What's the difference between Doctrine\Common\Persistence\ObjectManager and Doctrine\ORM\EntityManager when using it in a custom form type?
With both i can get get the respository: ...
6
votes
1answer
2k views
Explicitly print CSRF token field instead of form_rest(form)?
How can I explicitly print CSRF field instead of using {{ form_rest(form) }}?
I need this because I'm going to hide/show some fields based on conditions, however {{ form_rest(form) }} is going to ...
6
votes
2answers
7k views
Using entity field type in symfony2.1 form
Using Symfony 2.1.3-dev and Doctrine 2.3
I am attempting to build a form which provide multiple options for a user to filter a returned set of data (Entity\EngineCodes). The form is composed of 1 ...
6
votes
5answers
10k views
Symfony2 forms: How do I persist an entity with a nullable association?
When saving form submission data, I'm having trouble persisting a new entity instance where the entity has a nullable association with another entity and I attempt to set it to null. After creating a ...
5
votes
1answer
1k views
One-to-one association in form?
In symfony 2.0, how to create a drop down list using one-to-one association in form? Can you guys put good example please?
5
votes
1answer
3k views
How to add validators on the fly in Symfony2?
I've a password form field (not mapped to User password) to be used in a change password form, along with two other (mapped) fields, first and last.
I've to add validators on the fly: if value for ...
5
votes
3answers
4k views
Creating a Symfony2 Form Theme - Fieldset and List style
I am using symfony2. I am trying to override the default div style form blocks in twig.
First, does any have or know of an available implementation of the fieldset and list (ul -> li) approach?
5
votes
2answers
411 views
Validation constraints do not trigger for registration form
I have a Doctrine user entity that I am trying to add form validators to for the registration form but they do not fire for the registration form under any condition.
My user entity:
namespace ...
5
votes
2answers
149 views
Combine Questionnaire with User entity in form - symfony2
I need to add questionnaire of multiple choice questions to my registration form. The questions and options are in two entities:
<?php
namespace Me\UserBundle\Entity;
use Doctrine\ORM\Mapping as ...
4
votes
1answer
2k views
Add error to Symfony 2 form element
I check some validation in my controller. And I want to add error to specific element of my form on failure. My form:
use Symfony\Component\Form\FormError;
// ...
$config = new Config();
$form = ...
4
votes
1answer
2k views
Apply class to Symfony2 Form Label
I'm attempting to set the class on a class on a form label using php templates.
Here's my code:
<?php echo $view['form']->label($form['first_name'], 'First Name', array(
'attr' => ...
4
votes
2answers
589 views
How validate a selection of at least one element (or N elements) in Symfony 2?
My form as field users (entity type). How can i add validation in order to specificity that at least one user should be selected? Actually i'm adding an event listener but i don't know if this is a ...
4
votes
2answers
4k views
Problems With Multiple File Upload In Symfony2
I am making a Symfony2 application which needs to have a multiple image upload option. I have made the single file upload using the cookbook entry: How to handle File Uploads with Doctrine which works ...
4
votes
2answers
2k views
sfValidatorDoctrineUnique in an update/edit context
I'm using a form class in two separate contexts: both to create a new record and also to edit that record. I've set up a post-validator as follows to check that the URL field is unique.
...
4
votes
3answers
3k views
symfony2 customize form select options
I'm trying to do a simple form to add an activity with a name and a color.
So I want to make a list with some an array of color, for now it is working I have the name of the color.
I can add any ...
4
votes
1answer
2k views
Symfony admin generator— a button for save and back to list
How can I add a save and back to list button in the view for creating new record? In general, I want more buttons so I'm looking for a generic answer.
EDIT: Default generator provides me with two ...
4
votes
1answer
1k views
Adding “help” messages to fields
I'm trying to add some help messages after each field in form in symfony2.
I have read about one solution in official docs : ...
4
votes
5answers
542 views
Symfony2 form validation ignores empty value
FormType:
class BranchFormType extends AbstractType {
public function buildForm(FormBuilderInterface $builder, array $options) {
$builder->add('name');
}
public function ...
4
votes
1answer
2k views
Symfony2 : accessing entity fields in Twig with an entity field type
Here is my FormType :
public function buildForm(FormBuilder $builder, array $options)
{
$builder
->add('user', 'entity', array(
'class' => 'UserBundle:User',
...
4
votes
1answer
7k views
symfony doctrine:insert-sql - “Couldn't locate driver named mysql” error
hey, I am a newbie in symfony.
I am following this joobet tutorial on symfony-project.com, I am on there day 3 http://www.symfony-project.org/jobeet/1_4/Doctrine/en/03
Whenever I type php symfony ...
4
votes
1answer
787 views
Fields not persisting using MappedSuperclass in Symfony 2/Doctrine 2?
A MappedSuperclass:
/** @ORM\MappedSuperclass */
abstract class AbstractMessage
{
/** @ORM\Column(type="text", nullable=true) */
protected $content;
}
And a child subclass, redefining ...
4
votes
1answer
264 views
How to deal with the choice “other” in EntityChoiceList in Symfony2 forms?
I've got a model as described below :
I've also got a form to create a new product with a field entity building a dropdown list containing all the Brands.
Now I want to add a value "Other" in this ...
4
votes
2answers
410 views
Symfony forms - remembering a previously selected file
I am using Symfony 1.3.2 on Ubuntu and I have a form that contains several widgets. One widget is the sfWidgetFormInputFile, which allows a user to select a picture.
If the form is not valid, I ...
4
votes
1answer
529 views
Symfony 2 Create a entity form field with 2 properties
I am using symfony2 and have a form to save te relation of one user to some rules. These rules are setted by the admin user of the company. In this form, after I selected a user to update, I have to ...
4
votes
2answers
1k views
Sonata: Fatal error: Maximum function nesting level of '100' reached.. when embedding forms
EDIT: For anyone interested on solving the same issue, that did the trick:
echo `'xdebug.max_nesting_level = 250' >> /etc/php5/conf.d/xdebug.ini`
I've created 3 Admins for 3 entities ...
4
votes
2answers
1k views
Create combined client side and server side validation in Symfony2
I think it would be very useful to create client side form validation up on the symfony2 Form and Validator components.
The best way to do this would be to pass the validation constraints to the form ...
3
votes
1answer
1k views
Use a conditional statement when creating a form
I would like to use a conditional statement when creating a form in Symfony.
I am using a choice widget in general case. If the user selects the option "Other", I would like to display an additional ...
3
votes
2answers
695 views
Which is the suggested place to modify binded form data in Symfony?
I've a form for creating a new Customer. A customer may have a mobile number. Mobile number should be persisted without + or 00 prefix that user can type. This can be accomplished easly with:
...
3
votes
2answers
2k views
How do I override the default template when using Symfony Forms, Twig and SymfonyTwigBridge?
Im using Symfony and Twig in a Silex application.
I have a registration page with a form in:
{% extends "base.twig" %}
{% block title %}Welcome to My Example site{% endblock %}
{% block head %}
{{ ...
3
votes
2answers
1k views
How can I get the errors of an individual field in Symfony2 twig template?
Normally, we can have the Symfony Form to output the field errors using the form_errors twig function, but how can we get the specific errors of an individual field, but not display it?
Or is there ...
3
votes
2answers
510 views
Doctrine does not update a simple array type field
Short Story (Edit)
It is possible to store an array instead of a mapped association. In Symfony2, this is fairly easy using the collection Field Type. For example, using this technique, you could ...
3
votes
2answers
3k views
Symfony 2 hidden form field text
This is probably really stupid but I am trying to set a hidden form field value in symfony yet when I do a view source, the value doesnt show up. this->postID refers to a value I am passing in ...
3
votes
3answers
2k views
Symonfy 1.4 dynamic validation possible?
I'm trying to create a form that change the validation of a field based on the select option from the html form field.
Ex: if user select a option 1 from drop down field "options", I want the field ...
3
votes
1answer
2k views
Silex + Twig: form_widget() not found, even with Symfony Bridge installed
I've been following the documentation at the resource below
http://silex.sensiolabs.org/doc/providers/form.html
But I get the following error
Twig_Error_Syntax: The function "form_widget" does not ...
3
votes
1answer
1k views
Symfony2 and ParamConverter(s)
Accessing my route /message/new i'm going to show a form for sending a new message to one or more customers. Form model has (among others) a collection of Customer entities:
class MyFormModel
{
...
3
votes
2answers
4k views
Symfony2: entity field (html SELECT) set SELECTED item
I am using a form (filterForm) to filter entities on a twig view.
The 'filterForm' only has a field of 'entity' type. On the view it shows a HTML-SELECT-OPTIONs tag.
When the user changes the ...
3
votes
1answer
38 views
Symfony 1.4 sfThumbnail not generating thumbnails
I have an upload form, it works well, the photo is being uploaded but the problem is that the sfThumbnail plugin doesn't seem to work. No thumbnail is being generated. Here's my code:
// ...
3
votes
1answer
348 views
How to make FileUpload Object handle Multiple files in Symfony2?
I'm trying to make a form with a multiple file field. Since the docs are quite vague:
http://symfony.com/doc/current/reference/forms/types/file.html
...
3
votes
2answers
412 views
How can I check whether the supplied CSRF token is invalid in Symfony2?
I have created a Symfony2 form and bound it to the Request. I need to explicitly ensure whether the CSRF token is valid/invalid before proceeding with the rest of the form.
...
3
votes
1answer
2k views
Form Collection Error
I am trying to take one form type and display it however times i need for the user to upload a patch upload at one time. So say 30 files to uploaded, 30 forms on the page. I am receiving this error:
...


