0
votes
1answer
20 views

Symfony2 -> Twig -> Form -> Field -> Set rendered = true

i have a simple problem. I have a form with a field for example: $builder ->add('x') ->add('y') ->add('z') ; In my twig files i used multiple blocks and i want to stop render ...
0
votes
1answer
27 views

How can I change symfony2 form fields default options globally?

Is there a way to change default options for form fields globally in symfony2? More specifically, I want to change the render of ALL datetime fields to use single_text instead of the default choice ...
0
votes
1answer
52 views

multiple form in symfony2

I have a form for adding comments, and i want to know how can i multiply this form on the same page. I tried this code but it does not work : {% for statut in statuts %} <div> {{ ...
0
votes
1answer
84 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 ...
0
votes
1answer
190 views

How to render collections of forms

I have problem with rendering forms in Twig. I'm trying to embed a collection of forms. When I render the collection, it is not shown, while it is shown the name of form. The aim was to make the forms ...
1
vote
1answer
993 views

Symfony2 choice form split in twig

OK so i have a choice form with 2 options $builder->add('type', 'choice', array( 'label' => 'User type', 'choices' => array('1' => 'Customer', '2' => 'Supplier'), ...
0
votes
1answer
859 views

Symfony Twig Form Theming of specific fields

I have a custom form field type and an associated form theme for it. On one page I have a lot of these fields, but one of the fields in particular I want to change. Is there any way to theme certain ...
0
votes
1answer
567 views

How to add an image to each choice of a choice list in a Symfony2 form?

I'm using Symfony 2 form to create an expanded choice list using radio buttons for selecting whether to post a blog as an anonymous user or not anonymous (showing username). The form field type ...
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
2answers
356 views

Can't stop Symfony 2 repeated field from bubbling its errors?

I can't get the repeated field type to not bubbling errors (for example, when fields don't match) to the parent main form. Here is the $plain_password property: /** * @ORM\Entity */ class User ...
1
vote
2answers
156 views

How to pass a variable to add an if condition on a form

I am working with Symfony2. I have an EMPLOYEE entity(which has a string field 'category' among others) and a CONTRACT entity. So,here is my problem : After editing an employee, I can edit a ...
3
votes
1answer
1k 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 ...
0
votes
2answers
509 views

Check if a Entity Field Type returns a value in Twig

I have a Entity Field Type in a form, how do I check in Twig if its returning any value? The entity field type: $builder->add('users', 'entity', array( 'class' => 'UserBundle:User', ...
0
votes
0answers
303 views

Passing JavaScript variables from view / twig template to Symfony's controller

I have a result screen with HTML checkboxes next to the each row. User selects some of those chechboxes and click a button. After click action, I use jQuery to parse the selected checkboxes' ids and ...
0
votes
1answer
197 views

Templating each object in a form relation with Twig?

I've been trying to do the following: a Mail has a template, so you can pick from the Mail form a Template using radio buttons. So far so good. Now, instead of displaying the template name, I would ...
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
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 %} {{ ...
0
votes
2answers
1k views

collection Field Type not creating form elements

I'm trying to create a form which will add a new text box every time the 'Add new box' link got clicked. I read through the following example. ...
0
votes
1answer
435 views

Symfony2 choice_widget print only the label without markup?

Here is choice_widget template from Symfony2. I need to print the label text itself without markup, that is without calling form_label template but simply echoing the text. The line to be sostituted ...
0
votes
1answer
113 views

Accessing the original untransformed data after applying a DataTransformer?

Would be possibile to get the original data type after applying the ArrayToStringTransformer to the form field? I can't find any help in Symfony2 documentation here. That is, i need the original ...
1
vote
2answers
1k views

Get translated country name from a 2 digit country code in Symfony2/Twig?

I'm using the Symfony2 country Field Type, it works well and country names are translated. I store the two-digit country code in the column country of my entity. How can i display the full, ...
0
votes
1answer
200 views

Include a view not bounded to a specific controller action in Symfony2 with Twig?

I'd like to include form_fields.html.twig (view not bounded to a controller action) within edit.html.twig, actually a view served by MyController. Given the following directory structure: MyBundle ...
2
votes
2answers
2k views

How to render form_rest() as hidden fields in Symfony2/Twig?

I have a Form class that contains many fields. I would like to render few of them and pass the left ones as hidden. How is this possible ? I would like to do something like {{ form_rest(form, ...
0
votes
1answer
337 views

How to clear a date in a form (Symfony2)?

I would like to make a date clearable in a form (for example, with a little cross). The date field is already filled and I want to clear data. Is there an easy way to do this ? My date is nullable and ...
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 ...
1
vote
1answer
648 views

How to Render Dynamic Choices with Symfony2 + Twig

I'm attempting to dynamically load a select box's options based on some existing criteria in my database. The useful information is that there are 3 classes, a Pet, which has a breed and type, a ...
0
votes
1answer
2k views

Getting form widget name in Symfony2/Twig

So, what I need to do is to output current element's ID in each field_row. What I came to is overriding Symfony's default field_row block with the following code: {% block field_row %} {% spaceless ...
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 ...
0
votes
1answer
1k views

How to extend/overwrite symfony2 form_row function

I would like to use form_row(form.myfield) in my twig template to render the whole row (label, error, widget) of a form field. But I would like to overwrite the form_widget() function to give out ...
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?
3
votes
2answers
3k 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 ...