The Symfony form component is a standalone library that can be used outside of Symfony2 projects.

learn more… | top users | synonyms

0
votes
0answers
22 views

Symfony 2 standalone form submission - 'extra fields'

I am getting the following error: This form should not contain extra fields. when submitting a standalone Symfony 2 form. In this case, the extra fields are the CSRF token and the submit button. ...
0
votes
1answer
18 views

Overriding multiple select in symfony 2 formbuilder

So, I have a formbuilder action which has, in part, this: ->add('apples_group', 'entity', array( 'class' => 'ThingMainBundle:ApplesGroup', 'multiple' => true, ...
0
votes
1answer
23 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
23 views

Symfony subform attributes not being included in parent

So I'm having trouble getting attributes from subforms. The scenario is I have made a Work form where the 'employer' is chosen. If the user is an application admin, they can pick all employers. If ...
0
votes
1answer
31 views

Unable to extract translation id for form label with JMS Translation Bundle

I'm using the JMS Translation Bundle to extract my translations. Everything works, but when I try to extract my translation messages form a form builder I recieve following message: ...
0
votes
3answers
31 views

Symfony 1.4 Form Templating

I'm working on an installation of Symfony 1.4 that we've needed to re-skin to match new company branding. One of the requirements of the new skin is that radio buttons have the following syntax - ...
0
votes
1answer
54 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 ...
3
votes
1answer
37 views

Symfony2 FormBuilder: How to add and attribute to multiple form fields

I want to add a stylesheet class attribute to most of the fields, but not all. public function buildForm(FormBuilder $builder, array $options) { $builder ->add('name_short', null, ...
0
votes
2answers
54 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
0answers
7 views

how do I reload a symfony 1.x application?

I made some changes to my webform (like commenting out form fields so it wouldn't show) but when I try refresh/shift-refresh, they are still there. I tried searching the net but nothing useful came ...
1
vote
1answer
47 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
28 views

Symfony2 standalone Form component v2.3 - setting up a form

This is the same question asked here: Symfony2 standalone form component - setting up a form. The answer to this question seems to fully address the issue. Unfortunately back when this question was ...
0
votes
0answers
25 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
0answers
28 views

accessing other properties in twig of an entity field type

I'm trying to display an entity field type expanded and with multiple set to true. However, I want to display the other properties of the entity. This is similar to Symfony2 : accessing entity fields ...
0
votes
1answer
31 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
27 views

Symfony2 invalid token with big files

I'm having problem with token and file field form. The validation of the form is like this: public function getDefaultOptions(array $options) { $collectionConstraint = new Collection(array( ...
0
votes
0answers
60 views

Symfony form checkbox label translate

I am using Sonata Admin + Sonata ORM + Sonata User for editing users. When editing a user there are several checkboxes. Each checkbox has two labels (one before the checkbox and another one after the ...
0
votes
1answer
31 views

Set a default value to a widget if it is not setted in a form (PHP Symfony)

I'm working with Symfony PHP. I have a checkbox, and depending of it is checked or not, I want to display a combobox in a form. If the checkbox is checked, I want to display the combo with all ...
0
votes
0answers
59 views

Cannot override form_widget and form_widget_compound

I think that it is a bug. But maybe someone can help me to solve my problem. I have overridden form theme in twig template by next code: {% form_theme form 'path_to_my_fields_template.html.twig' %} ...
1
vote
1answer
55 views

Symfony2 - how should I implement validation on my non-doctrine objects?

Doctrine entities have validation metadata specified on their member fields independently of forms. Symfony2's form system somehow uses the validators provided by the entity. How does that work? What ...
0
votes
2answers
73 views

Symfony2 form submitting on page refresh

I have a form in Symfony2 framework. On successful submission of the page it renders another twig template file and returns the values by passing the parameters in an array. But after submission, if I ...
0
votes
1answer
39 views

how to refresh a dropdown list without a a submit in Symfony

I need to refresh a drop down list to display a session value after the filtering option is selected by another drop down. how can I do it?
0
votes
1answer
71 views

Symfony 2.2 create form through a service

i in Symfony 2.2 i want to create a little contact form through a service. I played around with the service configuration and the form components factories but everytime i got the following exception: ...
-1
votes
1answer
53 views

default value of form in Symfony

To make a dafault value of select in my form I do like that : $def_volume = array(-1=>"Please select a volume"); $def_issue = array(-1=>"Please select issue"); $volumes = ...
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
41 views

How to access a session value from the form in symfony

I have a variable that is set to session from the action form. I need to access the variable in the form How can i do it? This is the code I am going to access the variable. $this->unitCost = ...
0
votes
1answer
52 views

symfony 1.4 sfValidatorChoice is not working

I write few files to form submit. But form validators is not working for choices(payment status). This is my form. class bookingAddForm extends sfForm { protected static $paymentStatus = ...
0
votes
0answers
23 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
1answer
60 views

Pass/bind data objects to inner/embedded Symfony2 forms

i have the following form where i would like to pass some objects to the inner forms in order to populate them with data when being edited: public function __construct( $em, $id ) { ...
0
votes
1answer
32 views

Add a Value from drop down to a session variable and retrieve it in Symfony

I have been working with the symfony framework and I have the following issue. I have a dropdown that generates employee details. I have created a drop down that populate the a number according to the ...
0
votes
1answer
60 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
1answer
57 views

Create form/s depending child entities in symfony 2.1

I am newbie in Symfony. Now I am creating forms for one entity but I need to create any forms to edit child entities. For example, If I have contact entity and phone_numbers as a child entity in this ...
0
votes
1answer
66 views

Symfony 1.4 Forms: Include Data from Relation to Form

I have the following sample schema of 2 models OrderDetail and Item, many-to-one relationship: OrderDetail: columns: invoice_id: { type: integer, notnull: true } item_id: { type: integer, ...
0
votes
1answer
16 views

Fill a form with the username in the symfony2 session

I want to build a form that can use the information stored in a session to set default field values. ie when a user wants to log in, the field username will be populated automatically with the ...
0
votes
1answer
73 views

AbstractType Proxies\__CG__\Far\MT\AccountBundle\Entity\Account could not be converted to int in

class Accounts extends AbstractType { private $em; private $accountrepo = null; private $choices = array(); public function __construct() { } public function ...
0
votes
1answer
51 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
33 views

Default attributes from custom field type does not show up in HTML

I'm trying to implement an Facebook style autocomplete field using a custom form type. The JavaScript widget depends on a class name so I added it to the attr key in the custom form type class as I ...
0
votes
1answer
60 views

Using Symfony Form 2.3 in Silex

I'm trying to build a Symfony form (in Silex) by name. Using the configuration below, I believe I should be able to call $form = $app['form.factory']->createBuilder('address');, however the ...
1
vote
1answer
52 views

Customizing layout to sfWidgetFormDoctrineChoice

I am using Symfony 1.4 sfWidgetFormDoctrineChoice I have added the checkboxes to the form, which pulls the Model data successfully. What I want to do is also include a thumbnail next to the checkbox, ...
0
votes
1answer
58 views

How can I get the reason for an invalid form with symfony 1.4?

I'm novice people for symfony. I wrote a code for form submission. public function executeEdit(sfWebRequest $request) { $userId = $request->getParameter('id'); $this->user ...
0
votes
0answers
94 views

PHP and Symfony object to array conversion by type cast

I'm using symfony2 and createForm to get the http post data. After witch I do: $Data = (array) $form->getData(); And I get: array (size=1) '�Far\MT\AccountBundle\Entity\Movement�toAccount' ...
0
votes
0answers
58 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
2answers
44 views

Insert data from form to database

What i want to do is next: Create simple form with FormBuilder When form is submitted the result to be saved into database for particular user ( based on its ID ) In addition is the code from the ...
2
votes
1answer
58 views

Symfony 1.4 Validation Error Unsigned

when i try to save an form in Symfony 1.4 it gives me these errors: Validation failed in class CmsContentElementFile 4 fields had validation errors: * 1 validator failed on title (unsigned) * 1 ...
0
votes
0answers
45 views

No save unselected options in embedForms in n:m relations

I'm having a problem saving unselected (checkboxes) embed forms in Symfony 1.4.20 because in some cases it saves all the options for example: This result is wrong because I don't select all forms I ...
0
votes
1answer
94 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 ...
0
votes
1answer
41 views

Get “Unknown method Estado::” while trying to edit record

Related to this question I'm getting a error while trying to edit any records create previously. This is the error (I omitted some irrelevant pieces for not extend the post so much): 500 | ...
0
votes
0answers
56 views

Symfony 2 : Extending form class : Change label of inherited child

Am extending a form class like this : class RepportDateType extends AbstractType { public function buildForm(FormBuilderInterface $builder, array $options) { ...
1
vote
1answer
19 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?
1
vote
2answers
110 views

Data isn't saved when I send the form in Symfony 1.4.20

I've a form class called PersonaForm.class.php and this is the code inside this class: class PersonaForm extends BasePersonaForm { private $enfermedades_noseleccionadas = array(); private ...

1 2 3 4 5 12