The Symfony form component is a standalone library that can be used outside of Symfony2 projects.
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
60 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
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?
1
vote
2answers
122 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
vote
0answers
36 views
Object wrappers and forms
I am developing an ecommerce platform and came across a difficulty. Basically, I have in my scenario a Product, Option and OptionValue. A product might have multiple options which might have multiple ...
0
votes
1answer
81 views
Symfony2 forms and <input> pattern attribute
I am trying to create a form in Symfony2 with a text input field that accepts a string consisting of 6 digits followed by a dash followed by four digits (e.g. 123456-7890). It does work, but I'm ...
1
vote
1answer
50 views
Two problems with symfony forms
I've created simple form which allows users to enter comments. But what i want to achieve is the comment to be saved to the database for particular user ( lets say for the user id ) I have not idea ...
0
votes
1answer
82 views
Symfony2: setting the default option of a select
I have a form with a dropdown (select) and I would like to choose the option selected by default:
This is the code that generates the select:
$builder->add('language', 'choice', array(
...
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 ...
1
vote
1answer
219 views
Request ajax with html response - Symfony 1.4
I want to make an ajax request by a method that returns a html in Symfony 1.4.
All ok but I get an error parse json jquery and nowhere to get a specific treatment or parse json response.
Code In ...
0
votes
2answers
297 views
Update a entity/database record using form builder in Symfony 2
I have selected an entity/record from the database and pass it to my form. The form loads correctly, but when I hit save it adds a new record instead of updating the existing one.
PlanController.php
...
0
votes
1answer
103 views
symfony2 get all validation constraints on an entity (yml, xml, annotations)
Im trying to get all validation constraints on an entity and translate theses constraints to Jquery validation rules, right now im able to get annotation defined constraints (thanks to : Symfony2 get ...
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 ...
0
votes
1answer
24 views
required don't work for repeated field type in EventSubscriber
I created form EditFormType with code:
// ...
public function buildForm(FormBuilderInterface $builder, array $options)
{
// ...
$builder->addEventSubscriber(new ...
1
vote
1answer
44 views
Submitting form data to entity1 and entity2_id column is null even when entity1 and entity2 are mapped
I have two entities (Plan and PricingTier) that are set up to be mapped to each other. The PricingTier is set up to be a oneToMany and the Plan is set up to be a manyToOne. The mapped column is in ...
1
vote
2answers
331 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 ...
1
vote
3answers
49 views
Custom choiceType field
Please, help me!
I'm trying to make a form for a product with colors. Colors are objects in database.
$builder
->add('product')
->add('colors', 'choice',
array(
// ...
0
votes
2answers
170 views
Symfony2 Entity form type with a specific query_buider
Context
In my case, I've some orders with "discount vouchers" (discount). A discount can be use on under different conditions. For instance, discounts have an expired date, can be used by a limited ...
0
votes
1answer
117 views
Can UploadedFile object handle multiple files in symfony2?
When creating a form with a multiple file field, symfony2 returns a UploadedFile object for the property of that field.
...
2
votes
1answer
265 views
How to make FileUpload Object handle Multiple files in Symfony2?
I'm trying to make a form with a multiple file field. Since the docs are quite vague:
http://symfony.com/doc/current/reference/forms/types/file.html
...
0
votes
1answer
149 views
How I can show a modal window when data is saved
I'll like to show a modal window (Twitter Bootstrap Modal Component) when I save some data in Symfony. I use doctrine:generate-module task to build the module but doesn't know how to show the window ...
0
votes
1answer
66 views
Form themeing show pictures
I went to this tutorial. I got the example to work. But I don't get it because I can't customize it for my case.
I want to display a picture for each of my facebook friend and pass the adress of the ...
0
votes
1answer
72 views
Why I can't submit the form, value always required even if not
I've this code in my _form.php template (some fields irrelevant are omited):
<?php echo $form['correo_madre'] ?>
<?php echo $form['correo_madre']->renderError() ?>
In my ...
0
votes
1answer
152 views
Symfony2 simple many-to-many issue
I have a simple question,
I have two tables in relation many to many, Post and Category,
in an intact form PostType a collection of form CategoryType, but here the problems begin ..
I followed the ...
0
votes
2answers
91 views
Customize Symfony forms and get more control over validation process
I use doctrine:generate-admin to build CRUD operations for one of my models called "Alumnos". I know that Symfony generate the views under /apps/site/modules/alumnos/views and I'm trying to customize ...
0
votes
1answer
89 views
Create 2 different entities with same form in Symfony 2
Is it possible to create 2 related entities with the same form and action? If yes, how?
I want to create a new User and its related Questionnaire in a 1step registration.
Thanks,
Luca
1
vote
1answer
82 views
Addaptive Symfony2 form choice
i've just created a form class type which has a choice type where the choice_list must change depending on the logged user role, so the form class type needs access to the current user role and then ...
1
vote
1answer
44 views
Choice Multiple = true, create new Entries
My Entity
/**
* Set friend
*
* @param \Frontend\ChancesBundle\Entity\UserFriends $friend
* @return ChanceRequest
*/
public function setFriend(\Frontend\ChancesBundle\Entity\UserFriends $friend = ...
0
votes
1answer
30 views
Label form from an entry in db
I create a embedded form. How can I label in ItemType.php with the name from the db?
1.) Like:
$builder->add('id', 'checkbox', array('label'=> $v->getName(),...
2.) By the way symfony2 ...
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
2answers
217 views
Display empty form collection item in Symfony without using javascript
I'm trying to display a form with a collection. The collection should display an empty sub-form. Due to the projects nature I can't rely on JavaScript to do so.
Googling didn't help and I does not ...
2
votes
2answers
201 views
Why the smtp server doesn't send emails anymore?
I came across with a very strange problem . i am sending emails through my website to other recipients .its in symfony and i am very much new to this. here is my code
confg.yml
swiftmailer:
...
3
votes
2answers
317 views
How can I check whether the supplied CSRF token is invalid in Symfony2?
I have created a Symfony2 form and bound it to the Request. I need to explicitly ensure whether the CSRF token is valid/invalid before proceeding with the rest of the form.
...
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
22 views
Displaying choice based on foreign key / join
I have folowing schema:
Template
UserTemplate
template_id
Costs
template_id
amount
value
What I'm trying to do, is to create a sfWidgetFormDoctrineChoice that displays the shipping costs ...
0
votes
0answers
37 views
Symfony2 Form avoid writting password on each submit
i've just created a symfony2 form where i have a repeated password type. The whole form has a unique save submit button so right now the user is forced to write the password on each submit.
Does ...
0
votes
1answer
137 views
Access form data in form builder to add custom attribute
I'm creating form witch has collection type and collection element has field with data transformer witch is ID to Entity converter:
$builder->add(
$builder->create('template', 'text', ...
0
votes
1answer
67 views
Set field default options in Symfony2
In my PHP-project which uses the Symfony2 Framework, I'm using the Symfony2 Form-component. Inside a FormType-class adding a text field for instance would look something like this:
$options = ...
0
votes
2answers
101 views
Symfony2 ManyTo One relation form
I have two entities City OneToMany Anagrafic,
I make the form with the field AnagraficType city (use a hidden attribute because the handpiece using javascript) in this way:
class Anagrafic
{
/**
* ...
1
vote
2answers
129 views
How to add onchange event in sfWidgetFormTextareaTinyMCE?
I need to detect if tinymce content has changed. I am using symfony 1.4, sfWidgetFormTextareaTinyMCE.
Part of my form has the following code:
$tiny_mce_config = 'theme: "advanced",' .
...
1
vote
0answers
50 views
'That is not a valid option' Error in custom formtype submit
is there an easy way to allow choice fields in symfony to validate correctly with data that was added via js? So for example you load an empty field then populate it with js/ajax calls then select one ...
0
votes
2answers
65 views
How to reach a GET parameter in configuration of form?
I'm in the middle of configure() method and I must set a default selected value for a combobox. The value is in the URL, but no request or any object.
How to reach this variable?
0
votes
0answers
75 views
Form datetime type validation error
I'm using collection form type, where children has datetime type input as single text. But when I submit data in validation fails and getErrorsAsString shows this strange error:
inputDateTime:
...
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
2answers
274 views
Symfony2: adding form fields dynamically using information from request
Scenario:
step 1: fetch information from some archaic web service
step 2: adding x radio buttons to my form, while x depends on the information from the web service
I understand that I should add ...
2
votes
1answer
222 views
Symfony 2.0: How to validate embedded collection of forms without an entity
How can I validate embedded collection of forms (without entities) in Symfony 2.0? Upgrading to 2.1 isn't a convenient option at the moment if the solution lies along that line.
I've tried using the ...
0
votes
2answers
359 views
Symfony2 select choice ajax
I haven't found any comprehensive answer at the moment ..
I would like to learn how to change a select option based on the choices of another select.
eg.
Category One-to-Many SubCategory
I select an ...
0
votes
1answer
178 views
Symfony2 GenemuFormBundle collection with Select2
I'm trying to make this bundle a collection (many-to-many relationship).
I've set up a collection of data in this way:
->add('subCategory', 'genemu_jqueryselect2_entity', array(
'class' ...
2
votes
1answer
29 views
Get attribute from a form
I do create a field like this:
$builder->add('new_item', 'text', array(
'required' => false,
'property_path' => false,
'attr' => array('id' => $list_id),
...
0
votes
0answers
77 views
How to handle a dynamic form generator in symfony?
I have a requirement that customer admin can design their contact form with the use of following elements
Text field
Email Field
Text Area
Dropdown Menu
Checkboxes
Radio Buttons
Captcha
File Upload
...







