The Symfony form component is a standalone library that can be used outside of Symfony2 projects.
10
votes
1answer
4k 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 ...
9
votes
7answers
14k 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',
...
7
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',
...
2
votes
1answer
3k views
Dynamic form fields in symfony 1.4
I'm working on an e-commerce project and I got stuck at the cart update. Here I have to present a form using the contents of the current cart, with input fields containing the current quantities.
I ...
1
vote
1answer
570 views
Symfony2 data transformers, getting exception message
I've created my own data transformer, as explained in the dedicated cookbook, here is my reverse transformation:
public function reverseTransform($val)
{
// ...
// My logic here
// ...
...
1
vote
1answer
249 views
Symfony - Form requested url not found
Im working on a symfony project. Im battleling with a form that won't redirect to its own page. The action attribute is set to "" and method set to post. In that case it should call the same page but ...
0
votes
2answers
1k views
Symfony Generator Forms, Doctrine, and M:N Relationships
I have a basic M:N setup with three tables: candidate, position, and candidate_position.
Here's a screenshot of the ERD from MySQL Workbench
Now, moving on from that let's talk about forms. In ...
7
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 ...
2
votes
2answers
3k views
How to 'validate' a Symfony form in steps - instead of calling $form->isValid()
I am using Symfony 1.3.6 on Ubuntu.
I have a form with a lot of fields on it - rather than showing all the fields in one go (which may intimidate the user), I want to break up the form into stages, ...
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 ...
3
votes
2answers
583 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:
...
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' => ...
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:
...
2
votes
2answers
4k views
How to setup a many to many form in Symfony2
I have three entities, ChannelEntity -> MatchChannelEntity <- MatchEntity, the MatchChannelEntity saves the many to many relations between the other two tables, I want a form to list all the ...
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?
2
votes
2answers
39 views
is there a facility for generating scaffolding in a Symfony2 app?
I've been doing searches on scaffolding in Symfony 2 and keep finding references to "generators" but so far have not been able to get scaffolding up and working.
By "scaffolding" I'm referring to a ...
2
votes
1answer
599 views
How can I add a violation to a collection?
My form looks like this:
public function buildForm(FormBuilderInterface $builder, array $options)
{
$factory = $builder->getFormFactory();
$builder->add('name');
...
2
votes
1answer
1k views
Symfony2 allocates uploaded file to memory
While uploading a file bigger than post_max_size in Symfony, the uploaded file is allocated in the memory.
Fatal error: Allowed memory size of 150994944 bytes exhausted (tried
to allocate ...
2
votes
1answer
866 views
Accessing a form field from a subscriber (of a form event) in Symfony2
I'm following the tutorial How to Dynamically Generate Forms Using Form Events. I'm stuck on the creation of AddNameFieldSubscriber:
$subscriber = new ...
1
vote
1answer
503 views
Symfony 1.4 embedded form fields at the same indent
I have two models in my Symfony application. First one is Blog:
Blog:
columns:
name: { type: string(20), notnull: true, unique: true }
title: { type: string(255), notnull: true }
...
1
vote
1answer
2k views
symfony2 form error
The form's view data is expected to be of type scalar, array or an instance of \ArrayAccess,
but is an instance of class Ecs\CrmBundle\Entity\Customer.
Is the error I get in my browser..
FORM ...
0
votes
0answers
26 views
How to bind a array with a single data to a form using the Action file in Symfony
I need to add a variable to be displayed as a default in the form in the widget area, I have set a filter to select a single value according to a different name in the dropdown.
i have set the ...
0
votes
2answers
3k views
Symfony2 form and Doctrine2 - update foreign key in assigned entities fails [solved]
I have profiles and studies. One person can finish many studies. The form renders correctly. There is a button "Add new study" and with jQuery I add another subform based on data-prototype and this ...
0
votes
1answer
383 views
symfony filter change behaviour from [field=value] to [field LIKE %value%]
In my filter, a field's behaviour is to search in the DB table for a row that has the value of the field equal to the value provided in filtering form. I'd like to change its behavior to search in DB ...
0
votes
3answers
977 views
Backend sfGuardUser module
I use symfony 1.4.11 with Doctrine
I have sfGuardUser module in backend. I have sfGuardUserProfile table.
sfGuardUserProfile:
connection: doctrine
tableName: sf_guard_user_profile
columns:
...
0
votes
1answer
4k views
symfony 1.4 using post validator in New action throws error
I have the following action for a form. In the MyForm definition, I added post validator, so I can validate two fields at a time by certain condition. The problem comes when, after passing validation, ...
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 ...
4
votes
1answer
467 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
1answer
1k 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',
...
3
votes
2answers
428 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
1answer
4k views
Symfony 2 Embedded Forms
I am embedding a form type into another form type like so
$builder->add('parent', new \Company\Bundle\Form\UserObjects\AParentType);
However when I try and bind the request to the form
...
3
votes
1answer
661 views
symfony2 form choice and mongodb
When using Entity we can load choices from Entity via form field type entity
$builder->add('group', 'entity', array(
'class' => 'Fist\CoreBundle\Document\Group',
));
but when using ...
1
vote
1answer
50 views
How to use Repository custom functions in a FormType
The problem I'm facing is I have to create a selectbox in a form that holds all the parent entities (Category Entity). Now i managed to do this with:
$builder->add('parent', 'entity', array(
...
1
vote
1answer
573 views
Symfony2.1 using form with method GET
I need help on using Symfony2.1 forms with method=GET and a clean URL space.
I am creating a "filter" which I'd like to set in the URL so that people can bookmark their links.
So, very simply the ...
1
vote
2answers
429 views
Adding multiple records to a relations table with symfony
I have setup 3 tables in symfony:
A flipbook table, A Skills table, and a relations table, to connect each skill id with each flipbook id.
WHen I built the model, symfony constructed everything ...
1
vote
1answer
363 views
Symfony2 forms: How to deal with many to many “self-referencing” relationships of the type “parent/child”?
I'm using Symfony2 forms and have not been able to find out how to embed an intermediate class form that allows for creating a many to many "self-referencing" relationship of the type "parent/child". ...
1
vote
2answers
260 views
Removing table headers from embedRelation()
I have used the embedRelation() to pull another form into the sfGuard user form. It is working correctly, I am just trying to style it to fit into the current form.
This pulls the form in:
...
1
vote
1answer
630 views
Adding a new user field to sfGuard user Admin Form
I am trying to add a custom field to the user form in the sfGuard plugin.
I have created the column in the database and added the widgetschema for the field. It is showing up correctly in the form, ...
1
vote
1answer
344 views
Embedded forms in symfony 1.4 not saving propperly
I have the following model:
WebPromocion:
connection: doctrine
tableName: WebPromocion
columns:
id:
type: integer(4)
fixed: false
unsigned: true
primary: true
...
1
vote
1answer
274 views
Symfony alternate new action
I have a server where I need to store some images. Now the images can be either uploaded or created on the fly let us say just by adding some text to some default picture(So I made a file ...
0
votes
1answer
62 views
Tags Textext Jquery plugin, a good way to save created tags with symfony 2?
i work with symfony2 and now i try to save in a entity or directly in the database, the tags created in the texarea input of the tag textext Jquery plug-in.
I don't know the good way to persist values ...
0
votes
2answers
75 views
Symfony2 choice field not working
I asked a question here How to use Repository custom functions in a FormType but nobody anwsered, so i did a little digging and advanced a little but i still get this error:
Notice: Object of class ...
0
votes
1answer
234 views
Distinguish between bubbled errors and field errors in Symfony 2 form theme?
How can i distinguish between field errors and bubbled (form) errors? AFAIK the only block that controls this is:
{% block field_errors %}
{% spaceless %}
{% if errors|length > 0 %}
...
0
votes
1answer
120 views
Form requested url not found
helloIm working on a symfony project.Im battleling with a form that wont redirect to its own page. the action attribute is set to "" and method set to post. In that case it should call the same page ...
0
votes
2answers
107 views
Symfony submit to same url
I have a form with some text fields and I have a preview button that needs to submit the form to the same controller. And then in the controller, I need to extract the values and populate a form with ...
0
votes
1answer
1k views
symfony 1.4 doctrine form - introducing a fixed value field
EDIT. TO SUMMARISE: I just want SomeForm that extends my DoctrineForms to NOT INCLUDE certain fields. They are NOT editable. The fixed value I want to set in the code somewhere. Hopefully this should ...
0
votes
1answer
468 views
symfony - embeddedForm - mulitple checkboxes
I have article admin module and a tag module
Tags are simply a single tag per row item
What I'd like to do is to embed the list of all the tags (as checkboxes) into my article module
Could I do this ...
0
votes
1answer
552 views
Stop symfony from escaping html from query result
Currently I am using ckEditor with ckFinder in Symfony. When I save a form the HTML is saved (seemingly so) properly in the database. When I query through symfony and retrieve the results, the html ...


