Tagged Questions
0
votes
1answer
36 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
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
3answers
47 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
60 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
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>
{{ ...
1
vote
1answer
54 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, ...
1
vote
2answers
123 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 ...
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
74 views
Passing invididual field's “required” information to a compound Symfony2 form
I need to enter a pair of date and time in multiple places of my Symfony2 application. To accomplish this, I've created a custom_datetime form type. I'd like to decide whether time is required by ...
0
votes
1answer
327 views
Default value for entity backed Date field in Symfony2 Form Builder
Okay, I've got the FormType described below. I use this Form class for both the create and edit forms. I decided to set a default date (from_date and to_date below), using the data attribute in the ...
0
votes
2answers
149 views
Symfony 2.x Form Field Name
When I render a form, form Filed Name is given as an array. For example: search[item], search[keyword] etc. where search is name of the form.
I'm not great on working with forms but I think, the name ...
1
vote
2answers
91 views
How to use existing entity in a Symfony2 form?
I've this two entities:
class Article
{
/** @var ArrayCollection
protected $tags;
}
class Tag
{
protected $id;
protected $name;
}
Basically I've read ...
1
vote
2answers
786 views
symfony2: setting the value of a form field outside the form, inside a controller action
I need to set the value of a symfony2 form element.
I use a doctrine2 entity, a Symfony\Component\Form\AbstractType and the createForm() method inside my Controllers Action.
$saleDataForm = ...
0
votes
3answers
294 views
Testing symfony 2 forms
I develop new type, but I don't know how I can test it.
Assert annotation is not load and validations is not called.
Could any one please help me?
class BarcodeType extends AbstractType
{
public ...
0
votes
1answer
705 views
Embedding a dynamically generated form into another (Symfony 2.1)
I use Symfony2's FormBuilder to create a dynamic form in the controller:
$form = $this->createFormBuilder($defaultData);
$form->add('field','text');
I would like to embed another form in the ...
0
votes
2answers
135 views
Symfony2 forms: call a method from another entity
I have two entity: User and Person. An user is a person and in the User entity I have a method getPerson().
Now I am trying to create a form in order to change th user profile.
In there, I would like ...
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'),
...
1
vote
1answer
109 views
Form not passing through hidden field value correctly in Facebook, but ok elsewhere
I have a script that first checks if the form page is referred from a GET parameter
$page['is_referred'] = isset($_GET['rfr']) ? 1 : 0;
Then that set value is used as the value of a hidden field in ...
2
votes
2answers
221 views
Testing form tampering in a Symfony 2 multi tenant application
In my project an User can create a Customer and assigning it zero or more Tag. These entities have a relation with User of course. This is done by a form that has a tag field of entity type, filtered ...
0
votes
2answers
231 views
pulling a random number into a symfony form
I am pulling two random numbers to create a math equation in a symfony form. The problem is when the form is submitted, the random numbers are updated, making the form submission invalid. How can I ...
0
votes
2answers
720 views
Call to a member function bind() on a non-object in
my action.class.php
if ($this->getRequest()->getMethod() == sfRequest::GET) {
$this->formShoppingList = new ShoppingListForm(array(
'shoppinglist' ...
1
vote
1answer
908 views
Symfony Forms: Choice (dropdown) reveal hierarchy of Entity objects
I'm currently using Symfony 2.0.13 for a project and I'm working on the User registration form. My project uses Doctrine ORM, Twig and the Form component for this.
Every user has to select an Area. ...
0
votes
4answers
312 views
Symfony2 forms ignores attributes in custom fields when same defined in buidler
When I define attributes in form builder and same attributes as default in custom field the other are ignored. In form builder I have:
$builder
...
0
votes
2answers
3k views
Symfony2 form and Doctrine2 - update foreign key in assigned entities fails [solved]
I have profiles and studies. One person can finish many studies. The form renders correctly. There is a button "Add new study" and with jQuery I add another subform based on data-prototype and this ...
0
votes
1answer
228 views
Generate subform in ajax call
I have a form with collection of subforms - student with different studies - relation manyToOne. I have corrent database schema and entities and form builder works well. I don't know how to append new ...
2
votes
3answers
829 views
edit Symfony2 big entity in form with tabs
I'm building form using Sf2's form builder.
public function buildForm(FormBuilder $builder, array $options)
{
$builder->add('firstName')
->add('lastName')...
The Entity has a ...
3
votes
1answer
620 views
how to select multiple symfony checkboxes when editing object
I have a symfony 1.4 application and in a form I am using sfWidgetFormChoice to create multiple checkboxes.
I am able to set the defaults up without a problem, but after saving the object and viewing ...
7
votes
3answers
3k views
Symfony2 entity field type alternatives to “property” or “__toString()”?
Using Symfony2 entity field type one should specify property option:
$builder->add('customers', 'entity', array(
'multiple' => true,
'class' => 'AcmeHelloBundle:Customer',
...
6
votes
1answer
2k views
Explicitly print CSRF token field instead of form_rest(form)?
How can I explicitly print CSRF field instead of using {{ form_rest(form) }}?
I need this because I'm going to hide/show some fields based on conditions, however {{ form_rest(form) }} is going to ...
2
votes
1answer
592 views
Symfony form_errors(form) wrong field name, bug or my code is wrong?
I've a problem displaying form errors with {% form_errors(form) %}. Message displayed is wrong, fields are inverted. Don't know if this is a bug or my bad.
Anyway, this is part of my controller ...
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 ...
4
votes
1answer
3k views
How to add validators on the fly in Symfony2?
I've a password form field (not mapped to User password) to be used in a change password form, along with two other (mapped) fields, first and last.
I've to add validators on the fly: if value for ...
0
votes
1answer
1k views
Symfony2 UniqueEntity validation constraint as concatenation?
In my Tag entity i need to avoid creating a tag with the same name along all tags created by a given user. There is a many-to-one relation with User entity, named user.
I'm enforcing this constraint ...
0
votes
1answer
52 views
Form post not being recognized on the 2nd page
I have a very very basic dilemma that i am struggling with @ the moment. I have a Symfony form that posts to another page, essentially user is redirected to template_2 and the form exists on ...
0
votes
1answer
547 views
Access Form values in my Symfony executeAction backend
So one of my pages consists of a quiz form that has several questions of type multiple choice, the choices are specified as radio buttons. I have been scanning the Symfony documentation to find out ...
3
votes
1answer
294 views
Multiple Forms in Symfony
I do have a form. This form submits for example 3 words (beer, coke, wine). In the next action I do want to have a three choice widgets with one or more choices:
-beer: //first choice ...
9
votes
7answers
14k views
Symfony2 Setting a default choice field selection
I am creating a form in the following manner:
$form = $this->createFormBuilder($breed)
->add('species', 'entity', array(
'class' => 'BFPEduBundle:Item',
...
3
votes
1answer
4k views
Symfony 2 Embedded Forms
I am embedding a form type into another form type like so
$builder->add('parent', new \Company\Bundle\Form\UserObjects\AParentType);
However when I try and bind the request to the form
...
0
votes
1answer
1k views
Form with embedded relation won't save Symfony 1.4 Doctrine
I have embedded the Mutt form within the Mix form:
MixForm.class.php:
$this->embedRelation('Mutt');
$form = new MuttForm(null, array(
'mix' =>$this->getObject(),
));
...
0
votes
2answers
703 views
Symfony forms or normal HTML forms
I am using Symfony 1.4 to create project, and i need to create dynamic forms depending upon the question set type coming from database. i have used Symfony forms in rest of my project, but in this ...
2
votes
2answers
1k views
symfony override BaseForm class howto
I've installed the sfDoctrineGuard plugin. Everything is working, I can use the /sf_guard_user/edit/:id page to edit a user.
I didn't like the way the permissions were listed as a select list, I ...
1
vote
5answers
5k views
Add CSS attributes to Symfony form labels?
I try to add some css attributes to labels in my custom sfForm but I can't achieve it.
In my custom class myForm extends sfForm, I create all textfields dynamically:
public function configure()
...
1
vote
1answer
2k views
Pass a variable to a Symfony Form
I am building a web application using Symfony 1.4 and Doctrine for a school and I want to make a very simple form to add a course to a student.
The main problem I have is that in the drop down list I ...
0
votes
1answer
1k views
Symfony forms question (restoring selected value of a dynamically populated sfWidgetFormSelect widget)
I am using Symfony 1.3.2 with Propel ORM on Ubuntu 9.10.
I have developed a form that dynamically populates a select widget with cities in a selected country, using AJAX.
Before the data entered on ...
