Tagged Questions
0
votes
1answer
16 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
27 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
28 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
14 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
40 views
multiple input fields for related entities
I have a Symfony project with the Entities: Order, Product, Supplier.
An order can have multiple products and a product can have multiple suppliers.
I build a form where I can add products to an ...
1
vote
0answers
27 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 following
...
0
votes
1answer
27 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
30 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
81 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
46 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
60 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
25 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
65 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
35 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
40 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
45 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
28 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
1answer
81 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
30 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
21 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
35 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
44 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
36 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
69 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
28 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
48 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
51 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
55 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
52 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
59 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
258 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
44 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
62 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
42 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
59 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
58 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
90 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
60 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
73 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
36 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
44 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 = ...
0
votes
1answer
35 views
Symfony2: embed unrelated form?
Is it possible to embed a form for an object that is related to another but the relationship cannot be managed by an entity manager? From the linked question: the Client entity is in a foreign ...
0
votes
0answers
31 views
Symfony2 changing the name of repeated form fields
Because of hidden divs and such, I have to display the same form twice on a page. each form has different fields. the only one that is repeated is the email. in order to show two emails I had to add ...
0
votes
2answers
77 views
how to add choices in select after page load in symfony2
After loading a page the select field is completed dinamically with jquery but the post data is not loaded in $form->getData(). After some search, the option is to add a hidden field and add the value ...
1
vote
1answer
57 views
Symfony2 - Embedded forms wipe child data
Yet another continuation of this and also this:
So, I'm able to initially show a form that contains a BlogPost and it's associated Comments. The problem is, if I edit some BlogPost info and save, it ...
0
votes
1answer
35 views
Symfony2 exception when trying to embed a collection of forms
A continuation of this question:
I'm trying to embed a collection of forms as described in the official docs here. Unfortunately, I'm getting the following exception:
The form's view data is ...
0
votes
0answers
42 views
How to submit comments in Symfony2?
I want to submit a comment in main page then redirect to this page.
This is my action:
public function submitcommentAction(Request $request)
{
...
0
votes
0answers
230 views
How to work correctly with Forms, FOS Rest Bundle and many to many relations in Symfony2
I'm working with Symfony2 Forms and FOSRestBundle.
I'm trying to save in the database, an entity with a many to many relationship.
I create a Form with a collection field ...



