2
votes
0answers
28 views

Embedded forms of inherited doctrine's entities

I'm building a form generator using Symfony 2.2 with Doctrine. The base principle is that the user create a new form by filling its name and selecting the widgets he'd likes to have in a select menu. ...
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( ...
0
votes
0answers
33 views

symfony2 field collection of files removing previous files

I have a form that has a field collection to attach one or more photos to post. In the register form everything seems fine, but when i add more photos in the update form the framework replaces the ...
0
votes
1answer
73 views

Symfony2 Form “collection” + Doctrine Column “array” = Empty form_widget

I have a simple question about Symfony2's form type "collection" in combination with doctrine's column "array".** My Entity: /** * @Column(type="array", nullable=true) * @var array */ private ...
0
votes
0answers
61 views

Object is saved without calling persist on it - postBind event

In my application, I allow users to create what can be called "extra fields" for some entities. In order to make them appear when the form is rendered, I created a form subscriber and in the ...
0
votes
1answer
104 views

Entity field type symfony 2.0 - show data from database in edit action

Here is the situation: I have 3 tables (one-to-many): Product, ProductLabel, LabelTag (Label is reserved -_-) As you may have guessed, a product can have many labels. Now I have a form product that ...
1
vote
1answer
20 views

Validate composite entity's properties uniqueness

Does any one knows how can I validate the composite uniqueness of two entity's properties without creating a custom validator?
0
votes
1answer
192 views

Symfony2.1 entity field type multiple expanded not saving

I'm having some trouble with bi-directional relations (one-to-many) when using the entity field type in Symfony 2.1. When creating the child (Product) and selecting the parent (Category), everything ...
0
votes
1answer
83 views

Symfony2 Form Collection of entities with one-to-one relation

have You met with a situation in which the form contains a collection of entities that includes a one-to-one relation? I have entity that has many addresses and every address has one-to-one relation ...
1
vote
2answers
333 views

Symfony 2 form : entity widget with many to one/one to many relation - relation not persisting

I have a Audit form, to which i can attach several ressources (Audit has many Ressources, a ressource is attached to only one audit). the form is well presented in the view, yet, when saving the ...
0
votes
1answer
85 views

How to get symfony 2 forms to return entities from a dynamic value

Ok here is a quick overview of what I am trying to do. I have a "Client" entity with a relationship to a "ClientDomain" entity. I need to have a form that will show me a list of all the ClientDomains ...
0
votes
1answer
132 views

How to manage collections through an API with symfony2 and forms

I'm building an API where a user can update an entity with a collection as part of it. This works fine if I use forms throughout, but I'm building up the API. My entity looks like this: <?php ...
0
votes
1answer
142 views

Symfony changing the form that a form render a ManyToOne Field

this is my very first question :S I'm using Symfony2 and i'm having the following trouble I have two entities related in a ManyToOne relation, I want to make a form for the followin entity /** * ...
0
votes
1answer
229 views

symfony2 don't validate file upload on update

I want to update the single entity field using ajax. Basically I don't have form, Simply I am triggering ajax by clicking link passing id and value. But I have mutiple file fields in entity form. So ...
2
votes
2answers
280 views

Symfony 2 Forms and Doctrine Mongo - How to render @Embed and @Hash properties?

I'm totally stuck in combination of Symfony Forms and Doctrine MongoDb and need your help. I have a User class with @EmbedMany and @Hash: /** * @MongoDB\Document */ class User { /** * ...
-2
votes
1answer
155 views

how to select a value in dropdown in symfony2.0

How to select a value in drop down? I have a drop down, when I was fill a drop down in edit case then how will to show the selected value from a database? It is form builder class public function ...
0
votes
0answers
61 views

Symfony2: creating entity relations from checkboxes

First of all, what I want to make. I have a form type class CompanyType which contains Company entity fields and field for checkboxes. The purpose of checkboxes are following - from database are ...
2
votes
1answer
223 views

Symfony2 forms: add delete icon near each element

I would like to display in my form a list of elements from the entity. Near each element, it should be a delete button which will delete the specific element from the entty. Do you know how I could ...
9
votes
2answers
501 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 ...
1
vote
2answers
782 views

symfony2: setting the value of a form field outside the form, inside a controller action

I need to set the value of a symfony2 form element. I use a doctrine2 entity, a Symfony\Component\Form\AbstractType and the createForm() method inside my Controllers Action. $saleDataForm = ...
3
votes
2answers
431 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 ...
0
votes
1answer
177 views

Symfony2 file upload erase old data

i have 3 atributes on my entity to upload photos: photo1 photo2 photo3 i persist this ok in a first moment, on edit form if i submit without a file this unset all old data files my controller (same ...
0
votes
0answers
222 views

Symfony2.1+Doctrine2.1 OneToOne Unidirectional. Merged 2 forms(fos register form) error on bind

First, Symfony 2 Embedded Forms. And more I have seen and read it. Looks like What's easier... Error when I trying to save register form: Catchable Fatal Error: Argument 1 passed to ...
2
votes
1answer
483 views

Symfony 2 - Multiple form fields for one database row

I'm using Symfony 2.1 and Doctrine 2. I'm dealing with 2 main entities : Place and Feature, with a ManyToMany relationship between them. There's many features in the database, and to group them by ...
2
votes
1answer
246 views

Is there a smarter way to disable Doctrine2 filters in Symfony2.1?

I'm using Gedmo Doctrine Extensions, such as SoftDeletable, and at various points I need to disable this filter so that users can interact with soft deleted entities, or soft deleted relations of an ...
5
votes
2answers
385 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 ...
1
vote
1answer
364 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". ...
2
votes
1answer
747 views

Doctrine 2.2.2, cascade not working with many-to-many association?

I'm using Doctrine 2.2.2 on Symfony 2.0.17-DEV and PHP 5.3.14. I've a problem with many-to-many associations with cascade options. Example is so simple, hope than someone from this fantastic board can ...
4
votes
1answer
711 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 ...
1
vote
0answers
461 views

Symfony2 inconsistent form bind and persist behavior, entities associations not consistent

I have an Entity that belongs to one or many categories, and each entity (Boom) has many properties or subelements (Boomelement), in this case they should be 7. When I try to persist the entities ...
0
votes
0answers
179 views

Symfony2 - Fatal error when creating a custom query in a repository for an entity field type

I am using SYmfony2. I have a Document entity, an Employee entity and an FamilyMember Entity. A employee can have members of family. A employee can have documents and members of his family too. When ...
4
votes
2answers
538 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 ...
1
vote
1answer
638 views

Symfony/Silex: Form submission does nothing (no errors, nothing returned)

I'm using the most recent version of Silex (without the .phar) with Doctrine DBAL installed, on this signup form page. If I enter invalid details, it returns to that form as excepted. But if the ...
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 ...
0
votes
1answer
906 views

Form embedded for many to many & many to one in symfony2.

I have a problem when I try to embed a form in Symfony2 for many to many relations or many to one relations. I have two entities called 'Address' and 'AddressType' and they are related as you can ...
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 { ...
0
votes
3answers
1k views

symfony2 - error when trying to persist form data used in one-to-many/many-to-one

I have a form for submitting an article. The form has a category multi-select box that pulls categories from the DB using my Category.php entity. The form generates fine, but I get the following ...
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 ...
1
vote
1answer
269 views

Symfony2 Form, lot of querys with a Entity type (Doctrine2)

I have 3 entities: person, with an ID, employee and applicant. Entity person have vars employee and applicant, and OneToOne relationship. Employee and Applicant have a person as an ID, with ...
3
votes
2answers
3k 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 ...
1
vote
1answer
1k views

Class Naus\bundle\Entity\Sample is not a valid entity or mapped super class

i made a new bundle, made a new controller made few entities entity does get in the database when i use php console dotrine:schema:update --force i make a form, form pops great, when i submit i use ...
4
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: ...
0
votes
1answer
261 views

Generate file name on file upload that contains file's username

I want to have the filename looks like: Username-OriginalFileName. My first solution was to use the preUpload callback in my File Entity as described in Symfony cookbook here /** * ...
0
votes
1answer
629 views

symfony2 forms - check if user wants to change his uploaded file

in my form I got a file upload field, where the user can upload his avatar. So obviously he should be able to change it when he likes to. But somehow, if I want to upload a different image, symfony2 ...
0
votes
0answers
425 views

Form Validation (Sym2) - Invalid parameter number: number of bound variables does not match number of tokens

i'm using Symfony2 + Doctrine 2 In the validation of a dynamic form gives me this error and do not understand why. Only get error when I add one or more 'conocimiento' (Tags) to the class 'Recurso' ...
0
votes
2answers
190 views

Form widget not bound to a Doctrine2 association?

I have a form for creating a new BroadcastMessage entity and i need to display a widget of type <select multiple="multiple"> bound to excludedUsers property, not directly related to a Doctrine2 ...
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 ...
1
vote
1answer
344 views

Cross reference in Symfony2 form not work as expected

This is my first question here, so please excuse any mistakes - I'll try to avoid them the next time. ;-) I've written a custom RegistrationFormType for the FOSUserBundle. This form handles - in ...
1
vote
1answer
2k views

Symfony 2 embed form for doctrine one to many relation using sonata admin generator

I am trying to implemet CRUD using sonata admin generator. I have two table and Vendor and vendor contacts. My entity tables are like this use Doctrine\Common\Collections\ArrayCollection; use ...
0
votes
1answer
400 views

symfony2 forms: custom form element not referenced to doctrine2 object field

I'm trying to place a custom checkbox to form. This checkbox is not referenced to any doctrine2 object field. The checkbox is like "remember me" on signin form. public function buildForm(FormBuilder ...

1 2