0
votes
1answer
26 views

$form->bind change my $entity values

I have a problem with my bind method, i don't think it's a normal behavior. My $entity variable loose the property set earlier after the bind method of the form. $entity = ...
0
votes
2answers
38 views

Data from input form to controller

To generate form I use {{ form_rest(form) }} It generates me a html: <label class="required" for="findclient_client_number">Client number</label> <input ...
0
votes
1answer
15 views

Selectbox two properties

I am creating a selectbox with data from DB. I have got $builder->add('user', 'entity', array( 'label' => 'User:', 'class' => 'AcmeDemoBundle:User', ...
1
vote
0answers
17 views

read_only not submitting data and form is not valid

So I have an input that has a read_only attribute. When I submit the form that data does not get posted to the page, which is good. But then when the form is bound (with ->bind()) and then ...
0
votes
0answers
18 views

Secure post form symfony2. Add token

In my show_promoter.html.twig i have a form to add new admin to this promoter. The input is hidden because i use Select2 (http://ivaynberg.github.io/select2/) to find users by name. Is a multiple ...
0
votes
2answers
27 views

Site-wide form with Symfony2?

I have simple form at all site pages: username, password, [Sign In] I tried to make with with simple HTML, but I get The CSRF token is invalid. Please try to resubmit the form Idea to make form in ...
0
votes
1answer
19 views

How can I display the name of all services with specific tag in symfony2 form

I have several services tagged with the same tag. I wonder how to proceed to retrieve the list of all thoses services and to inject it in a form ? Here is an exemple of what I want at the end: ...
0
votes
0answers
33 views

Submitting form in symfony2 (ManyToOne)

Sorry in advance for my bad level in english. I am working on a symfony2 project for 3 weeks (I’m a beginner on symfony2) and I have a problem about one update form. My form use two entity : one ...
0
votes
2answers
30 views

Symfony2 - Reuse form type multiple times in a form

I am trying to make a form where a user can insert his curriculum vitae data. At the moment i have created an experience form type containing all the experience related fields. The problem is that ...
0
votes
0answers
16 views

Validating an uploaded file in a callback function, based on its content

I have a Symfony2 form entity validated by a callback function (See Doc). It works well : /** * Callback assertion to validate */ public function isValid(ExecutionContext $context) { if( ...
1
vote
0answers
60 views

multiple input fields for related entities

I have a Symfony project with the Entities: PurchaseOrder, Article, Supplier. An order can have multiple articles and an order can have multiple suppliers. You can set the amount of each article ...
1
vote
0answers
37 views

Expected argument of type “Boolean”, “string” given while generating a questionnaire in Symfony2

I am trying to manage a questionnaire with symfony 2, the code is partly working. I get this error Expected argument of type "Boolean", "string" given My code in the controller is the ...
0
votes
1answer
32 views

Symfony2 - Add a required checkbox to an Image Form Field

I need the form to display a checkbox field, when the user selected an image for the upload in an image Form Field and make this required. The User has to confirm, that he claims the rights on that ...
1
vote
0answers
31 views

customizing symfony2 form date field

i want to build an form include date field with view like this. <!-- day --> <select> <option>1</option> <option>2</option> ...
6
votes
1answer
99 views

symfony2 multiple nested forms prototype

I want to include a collection type inside another collection type. It should look like this: Using just one collection works fine, but I need to edit the prototype of the outer form, so it renders ...
0
votes
0answers
51 views

How to make a questionnaire in Symfony2?

I am trying to build a website with Symfony2 in which each registered users can answer to a questionnaire. The questionnaire should contain three types of answers : - checkbox - multiple choices - ...
0
votes
0answers
82 views

Symfony2 translate form entity property

I have a symfony2 form for edit users. My users has roles and you can select multiple roles for one user. In my form I display the UserRoles entity: $builder->add( 'rolesAsObject', 'entity', ...
1
vote
0answers
30 views

symfony2 validate a form value using another form value

In Symfony2, I use custom constraints to validate some data on my form, but I wonder if I can bring in one value from the form to use in validating another value? Here's my constraint... <?php // ...
1
vote
2answers
76 views

symfony2 form multiple select with arraycollection

I would like to create a form to edit my users. Users and roles connected with ManyToMany. In UserUsers entity I have a $roles variable which is ArrayCollection: public function __construct() { ...
0
votes
1answer
12 views

In symfony2 is there a single variable or methode like 'hasError' to check if a form returns any errors?

In Symfony you can link validation to both a field or an input so errors are the returned in form.vars.error and form.fielName.vars.errors In a template I had to do all these checks just to fuigure ...
0
votes
1answer
40 views

How to add a repeated form in a loop symfony2 for the same entity

I want to build a questionnaire form. When I use the following code, I can only see the last question of my table that contains 18 questions (and the answer field). I can't use a collection because ...
0
votes
2answers
43 views

symfony2 twig referencing base widget

I am trying to customize my symfony2 form choice_widget_expanded part, and trying to reference the base (standard) for the choice_widget_collapsed as per this instruction ...
0
votes
0answers
46 views

Symfony2 forms with many to many through

I'm working on some project with excellent symfony2 framework and I'm stack with some problem. I have to implement these entities: User System Partner User entity is a kind of customer and in the ...
0
votes
1answer
30 views

symfony2 twig render form 'choice' as list

How can I (in symfony2 twig) render the form control 'choice' (expanded, checkboxes) as list ('li's, or just with a 'br' inbetwwen each option) and not have all options appear on one line? I guess I ...
0
votes
2answers
92 views

Symfony2 grouped form items

I really need your help creating a form. I have entity with $id, $name and $items properties. $items is manyToMany relation. Then I have two other entities group and item. Both have $id and $name ...
0
votes
1answer
35 views

Symfony form rendering field value reference

Ok, Symfony Forms have always been a hell to understand for me, but now I decided to learn how they work! I just started and already a problem I can't figure out how to solve. I have a random form ...
0
votes
0answers
24 views

How to use a Service to populate Entity fields in a Form? (via query_builder)

In my Symfony2 projects I always use "Manager Services" to decouple all the model layer. (e.g. WorldManagerService, UserManagerService, etc...) The problem is that I do not know how to use those ...
0
votes
0answers
37 views

Testing Symfony2 Forms causes Could not load type “entity”

I am testing a Form Type I defined for an application. During testing the form type, using symfony's TypeTestCase class a message "Could not load type "entity"" appears. What can I do to solve the ...
2
votes
1answer
50 views

Symfony2 Custom form type using entity trying to test it

I am trying to test a form type I have creating that uses a field with class entity here is the creation of the form $builder ->add('name', 'text') ->add('description', ...
0
votes
1answer
40 views

Translate empty value in Symfony form

I have a form with select box, and that field has an empty value property. I want to have it translated but adding translation_domain doesn't change anything. <?php namespace ...
0
votes
1answer
78 views

Dynamic type in a form with symfony2

I am using Symfony2 to build a web application including a quiz. The quiz will have different type of questions like choice and choice with multiple answers. What I did is the following quiz form: ...
0
votes
1answer
33 views

Silex/Symfony FormServiceProvider text in textarea

I'm using the FormServiceProvider in Silex to generate my forms. Now I want to put a default text in a generated textarea. (not a placeholder! && the attribute 'value' I use on my textfields ...
0
votes
1answer
60 views

symfony2 form abstract type send options

I am doing some forms under symfony 2.1.9 For usefull reasons, I have done a FUser class, who extends from my user entity. I have done an UserType class, for being able to reuse my form. My UserType ...
1
vote
0answers
55 views

Symfony 2 subform not bindig data

I have a form that is not directly related to a doctrine entity but some of his subforms are public function buildForm(FormBuilderInterface $builder, array $options) { $builder ...
0
votes
1answer
63 views

Symfony2: Pass Parameter to Form entity object for query_builder

In My form i use this code $form->add('user', 'entity', array( 'label' => 'User Name', 'class' => 'DotArtBundle:User', 'property' ...
1
vote
1answer
54 views

Symfony 2 form in eZ Publish 5, CSRF intuition

I'm working on a eZ publish 5 project. This CMS is based on symfony 2. I have built a form without class as described in tge page : ...
-1
votes
0answers
39 views

Symfony 2 extra field in radio

I'd like to build form with radio list and one of radio element should has input text filed. How can I do this with symfony2 forms? Form like:
0
votes
1answer
60 views

Disable some checkboxes in form

I was wondering if there is an easy way of how to disable one checkbox from modifying it by user (Symfony 2.1). I was trying something like this: $builder->add('adminRoles', 'entity', array( ...
-4
votes
2answers
267 views

How to persist a form to a database, NOT entity, in Symfony2

I'm currently rebuilding a web app using Symfony2. I want users to update specific records that they have on our MySQL database. However, the users aren't confident computer users and don't like the ...
0
votes
2answers
58 views

Symfony2 fosUserBundle Change Password prevent nested form

How do i prevent the form - rendered through the Symfony2 - FosUserBundle - being nested? The builder has two field, on of them is repeated field. It seems that this is goind to be rendered as nested ...
0
votes
2answers
71 views

The class 'Symfony\Component\Form\Form' was not found in the chain configured namespaces during Form Submission

I'm building an interface that will allow people in the office to edit details of specific records. Currently I have a form like this: view.html.twig <!-- Modal Windows: Edit Instructor Personal ...
0
votes
3answers
46 views

<select> in Symfony2 Forms

I have two tables, user ------------------- id | name | city_id ------------------- 1 | abc | 1 2 | xyz | 3 3 | hkj | 3 ------------------- and city --------- id | name --------- 1 | BN 2 ...
0
votes
1answer
62 views

Symfony2 Update Specific Field in Form Collection

I have an interesting problem. I couldn't find any solution in stackoverflow and also google. I have an Entity User and User have some metas. So I created a UserMeta Entity and also UserMetaValue. In ...
2
votes
1answer
60 views

How to display a Many to One Relation in a form dropdown in Symfony2?

I have a a form when I need to display the OneToMany relation between let's say a car and its brand. When I click on the dropdown for now, I can only see the car name. since it is automatically ...
0
votes
1answer
42 views

Adding an ID to a label tag in symfony form

I am building a form in symfony2 and I need the label of a form element to have an ID so I can hide it using javascript. Here is my code that builds the label: $builder->add( ...
0
votes
2answers
101 views

symfony2 build form entity oneToMany

I am learning symfony framework and have a big problem. I have two database table: category (primary key: categoryid) and product (primary key: productid and foreign key: category_categoryid). In ...
1
vote
0answers
61 views

Symfony2: adding dynamically an element to a double embedded relation form

One model like this: class X { /** * @ORM\OneToMany(targetEntity="Block", mappedBy="x",cascade={"all"}, orphanRemoval=true) */ private $block; ... class Block { /** * ...
1
vote
0answers
77 views

Symfony 2 forms: array of entities

I am trying to build a form for multiple entities. Let me first introduce some sample classes: For clarity I do not show all annotations or abbreviate them, and I do not show the use or namespace ...
0
votes
1answer
38 views

Symfony2 - Is it possible to create a standalone collection of forms?

I have a table of data I want to be able to edit row-by-row. The most sensible thing do do would be to have each row be its own form. Can I do that in Symfony2 without a linked parent entity? The ...
0
votes
2answers
45 views

How to pass an object with form in Symfony2

I have a problem. At the beginning, this is my action which create form: public function wyswietlDostepneTerminyAction($kategoria) { $zlecenie = new Zlecenia(); $form = ...

1 2 3 4 5 15