Tagged Questions
1
vote
1answer
53 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
2answers
86 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
129 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
1answer
81 views
imag ldap bundle is checking ldap hostname & password before login in symfony2
I have used imag Ldap bundle for authentication in symfony2. But the problem is that it's checking the Idap arrtributes like ldap host name & password before submit the login page.
I didn't ...
0
votes
0answers
155 views
AJAX Editing in list view for symfony 1.4
I'm looking for a way to edit rows within a list view of the Symfony 1.4 admin-generator backend CRUD interface.
Rather than clicking edit and going through to an edit form, then having to click save ...
0
votes
1answer
315 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 ...
2
votes
1answer
160 views
Symfony 1.4/Doctrine: store datetimes as UTC, but show all times in generated admin as Eastern Time
We have a Symfony project with a generated admin app, and we need datetime fields to show up as Eastern Time. Right now, Symfony is set to handle all datetime values as UTC. This is by design, since ...
0
votes
1answer
397 views
Symfony forms for Translatable Doctrine entities
I have a Doctrine entity that has been translated using the Translatable Doctrine extension:
<?php
namespace Myapp\ProductBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
use ...
3
votes
1answer
108 views
Symfony2 Form Generation from Vendor Classes
Working with Symfony2 and trying to figure out how best to incorporate Vendor libraries. Calling vendor library methods is very easy using the routing configs: use the appropriate namespace, generate ...
-2
votes
1answer
152 views
how to select a value in dropdown in symfony2.0
How to select a value in drop down?
I have a drop down, when I was fill a drop down in edit case then how will to show the selected value from a database?
It is form builder class
public function ...
3
votes
2answers
421 views
Doctrine does not update a simple array type field
Short Story (Edit)
It is possible to store an array instead of a mapped association. In Symfony2, this is fairly easy using the collection Field Type. For example, using this technique, you could ...
0
votes
1answer
529 views
Symfony2 Doctrine insert/update form
I am trying to compose a very basic form which is capable of inserting and as well updating records in the database.
My problem is that each time I press the Save button, a new row is created in the ...
1
vote
2answers
428 views
Adding multiple records to a relations table with symfony
I have setup 3 tables in symfony:
A flipbook table, A Skills table, and a relations table, to connect each skill id with each flipbook id.
WHen I built the model, symfony constructed everything ...
0
votes
0answers
178 views
Symfony 1.4 : setDefault value to Object Id not working
I have a form (FlipbookSkillsRelationsForm.class) embedded into another form (FlipbookForm.class).
This brings in the Skills tables and when the form is submitted, it creates a relation between the ...
0
votes
1answer
91 views
If else hiding div
I having a problem on hiding div..... All I wan't to do if the query is NULL then the div will not show, but if the query is not NULL the div will show.
here is my code:
<?php
$q = ...
0
votes
0answers
107 views
Phantom unknown record property name causing 500 error
I am getting this error on a form load:
Unknown record property / related component "title" on "Flipbook"
The thing is...I have no idea where "title" is coming from. I have set it up as ...
0
votes
1answer
1k views
How to embed form in symfony2 for entity ManyToOne relation?
I'm quite new to Symfony 2 Framework.I want to form embed for entity ManyToOne relation .I have to entity Address and AddressType
Address entity
namespace Webmuch\ProductBundle\Entity;
use ...
1
vote
2answers
260 views
Removing table headers from embedRelation()
I have used the embedRelation() to pull another form into the sfGuard user form. It is working correctly, I am just trying to style it to fit into the current form.
This pulls the form in:
...
3
votes
1answer
1k views
Symfony2 and ParamConverter(s)
Accessing my route /message/new i'm going to show a form for sending a new message to one or more customers. Form model has (among others) a collection of Customer entities:
class MyFormModel
{
...
0
votes
1answer
269 views
symfony: forms with some fields related each other
I've got this schema.yml
Region:
columns:
name: { type: string(255), notnull: true, unique: true }
options:
symfony: { form: false, filter: false }
Province:
columns:
id: { type: ...
4
votes
1answer
2k views
Difference between ObjectManager and EntityManager in Symfony2?
What's the difference between Doctrine\Common\Persistence\ObjectManager and Doctrine\ORM\EntityManager when using it in a custom form type?
With both i can get get the respository: ...
2
votes
2answers
3k views
How to setup a many to many form in Symfony2
I have three entities, ChannelEntity -> MatchChannelEntity <- MatchEntity, the MatchChannelEntity saves the many to many relations between the other two tables, I want a form to list all the ...
1
vote
1answer
341 views
Embedded forms in symfony 1.4 not saving propperly
I have the following model:
WebPromocion:
connection: doctrine
tableName: WebPromocion
columns:
id:
type: integer(4)
fixed: false
unsigned: true
primary: true
...
0
votes
0answers
223 views
Symfony filter field display credentials
In my generator.yml, I have credentials set for a field. Now, if someone without that credential is using the site, that field is hidden in list view but in the filters, it is not hidden.
Of course ...
0
votes
1answer
381 views
symfony filter change behaviour from [field=value] to [field LIKE %value%]
In my filter, a field's behaviour is to search in the DB table for a row that has the value of the field equal to the value provided in filtering form. I'd like to change its behavior to search in DB ...
0
votes
1answer
326 views
symfony admin list view Sort by username when the model is associated with user_id
I'm working with sfDoctrineGuardPlugin. I have a model Poster which has a user_id field linked to the id field of the sfGuardUser table.
Poster:
actAs:
Timestampable: ~
Sluggable:
...
-1
votes
1answer
104 views
Symfony save an object of different model
I have a model Poster and the server stores images. So the model has a filename field. I have a form class MakenewForm.php and I need to override its doSave() so as to achieve a save for a Poster ...
0
votes
1answer
943 views
uploading a picture using forms in symfony
I need to upload images using symfony, but ive not been able to do it using my form...
A simplified model is:
Offer:
columns:
id:
name:
pic:
flyer:
description:
.
.
...
0
votes
1answer
338 views
How to build single doctrine-based form with Symfony command line
While generating doctrine based forms with:
php symfony doctrine:build-form
Symfony overrides my previously generated and edited forms, which is so wrong! :)
Does anybody know how to generate ...
0
votes
1answer
736 views
Symfony: sfWidgetFormInputCheckbox() “on” vs true for Doctrine form?
I have a custom Form I've made that extends the Doctrine base forms for a Doctrine object.
I have a database field that is type: boolean. For my form, I have this represented by a ...
0
votes
2answers
798 views
Symfony sfWidgetFormDoctrineChoice with 'multiple' => true
I use symfony 1.4.11 with doctrine. So part of schema :
Companies:
actAs:
Timestampable: ~
Sluggable:
unique: true
fields: [company]
canUpdate: false
builder: ...
1
vote
2answers
634 views
sfWidgetFormDoctrineChoice for NestedSet model
I'm experiencing a difficulty in rendering sfWidgetFormDoctrineChoice (set of checkboxes) widget for a NestedSet structure.
class ModelForm extends BaseModelForm
{
public function configure()
{
...
0
votes
2answers
1k views
Symfony Generator Forms, Doctrine, and M:N Relationships
I have a basic M:N setup with three tables: candidate, position, and candidate_position.
Here's a screenshot of the ERD from MySQL Workbench
Now, moving on from that let's talk about forms. In ...
3
votes
1answer
383 views
How do I create a Symfony validator that needs to access other fields values?
I want to implement a Symfony validator that validates passwords for a registration form, which means I want a 'Password confirm' field. How do I make a validator that somehow ties these fields ...
0
votes
1answer
1k views
symfony 1.4 doctrine form - introducing a fixed value field
EDIT. TO SUMMARISE: I just want SomeForm that extends my DoctrineForms to NOT INCLUDE certain fields. They are NOT editable. The fixed value I want to set in the code somewhere. Hopefully this should ...
0
votes
1answer
610 views
sfDoctrineForm - How can i check if the object in an embedded form exists and relate it to the new parent object instead of creating a new one?
Im working on a user registration form that involves 3 different objects, The user, member profile, and member organization. Im trying to embed all these into a single registration form like User > ...
2
votes
2answers
882 views
Symfony Generator Forms, Doctrine, and M:N Relationships [duplicate]
Possible Duplicate:
Symfony Generator Forms, Doctrine, and M:N Relationships
I have a basic M:N setup with three tables: candidate, position, and candidate_position. Here's my best stab at ...
4
votes
2answers
2k views
sfValidatorDoctrineUnique in an update/edit context
I'm using a form class in two separate contexts: both to create a new record and also to edit that record. I've set up a post-validator as follows to check that the URL field is unique.
...
2
votes
1answer
351 views
Symfony Embedded Relation Many2Many - linking unique fields or creating new fields
I'm using an embedded relation to allow the user to edit/add books to a library and in the same form to add/remove n authors who wrote the book within the auto generated admin.
Here is my problem: An ...
0
votes
1answer
492 views
symfony executing multiple queries to populate repeated form field
My symfony project has an object A which has a one-to-many relationship with object(s) B, i.e.
A
B
B
B
A
B
A
B
B
In the form for A, I'm using $this->embedRelation('B') to display the form(s) ...
1
vote
1answer
427 views
Using sfDoctrineGuardPlugin. Want to set id field without user choice
I am using Symfony 1.4 and Doctrine 1.2 and sfDoctrineGuardPlugin. I have a article create page. On my article table, i have profile_id field for saving which user (author) wrote it.
My problem is, ...
0
votes
2answers
94 views
how to avoid storing several times a repeated field of a Symfony form?
I am working with Symfony 1.4 and Doctrine. I have a model A with an email field. The form of A displays an input in which the user should insert the email correctly. But as everybody knows, sometimes ...
1
vote
2answers
777 views
does sfWidgetFormSelect provide a string or an int of the selected item?
I'm having an annoying problem. I'm trying to find out what fields of a form were changed, and then insert that into a table. I managed to var_dump in doUpdateObjectas shown in the following
public ...
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(),
));
...
-1
votes
1answer
539 views
symfony forms passing a get value to forms
in symfony i have two table course n lesson
n i placed a newlesson action inside couse action
what it does redirect to lessoin with course id ..
now i want to disply this couseid in new lesson form..
...
0
votes
2answers
410 views
HowTo: display custom error message when unique index fails on object save
I have added an index on a table just to ensure that a set of fields together form a composite unique key (Is this approach correct? or is there a better option with Doctrine?)
After having done ...
0
votes
1answer
263 views
how can I find out if a method exist for a doctrine model in symfony?
I have a doctrine model that has a method getSomethingId()
and I'm making something of an automated form generator for internal use in the company
how can I check if my model has this method?
I've ...
0
votes
1answer
83 views
how can I define a value for model's field in symfony?
I'm building an app for the company I work for in symfony, non the less the app might be pretty useful outside our company so we decided to write it in a more general form so we can make it multi ...
2
votes
1answer
2k views
Symfony / Doctrine - How to filter form field by property in related model
I have a UserForm class which has a select list populated from a related model (specified by a foreign relationship in the yml) like so:
$this->setWidget('report_id', new ...
-1
votes
2answers
749 views
Edit primary keys in Symfony auto-generated admin
I need to edit primary keys in several tables.
By default, symfony hides primary keys in New/Edit forms.
For example, can't edit table 'Tags' with only field 'tag' which is PK.
Adding integer ID to ...

