Tagged Questions
1
vote
0answers
184 views
Propel orm 1.6, symfony 1.4 embeded I18N form
I use propelorm (propel 1.6) plugin and symfony 1.4.20.
I have book table with I18n, and this book have relation with gallery table which also have I18n. I fill all book form fields, added two ...
2
votes
1answer
120 views
Creating a boolean form widget that accepts null value
My Symfony model has a field which is boolean but also accepts NULL so effectively is a tri-state value.
How can I write a widget for this? Symfony auto-generates a sfWidgetFormCheckbox but that
can ...
1
vote
1answer
77 views
No Base and Custom forms in symfony2?
We had this concept of baseform and custom form in symfony 1.4. In symfony2, I believe this concept is dropped. I am using propel:form:generate to generate forms, am I supposed to make modifications ...
1
vote
1answer
395 views
Symfony2 forms: How to deal with many to many “self-referencing” relationships of the type “parent/child”?
I'm using Symfony2 forms and have not been able to find out how to embed an intermediate class form that allows for creating a many to many "self-referencing" relationship of the type "parent/child". ...
2
votes
1answer
3k views
How to add an autocomplete field in a Symfony2 form for a collection and using Propel?
I'm using Symfony 2.1 forms with PropelBundle and I'm trying to refactor a form that had a drop-down list of objects (to select from) to instead use a jquery autocomplete field (working with AJAX). ...
0
votes
1answer
108 views
How to access other filter values inside of a custom addXXXColumnCriteria?
I have a request to create a form filter that has two fields, one a freeform text
and the other a select. The value in the select will determine how to handle the value of the text is turned into a ...
1
vote
1answer
335 views
Symfony - Multiple sfWidgetFormPropelChoice filter- How to select all by default?
I'm using a sfWidgetFormPropelChoice widget in a filter, with the multiple select option turned on.
Is there an easy way to have ALL of the options selected by default?
I know I can use set default ...
2
votes
2answers
858 views
Symfony/propel form saving an object with additional properties
First, let me say, that I find the sfFormPropel form's interface inconsistent.
There is bind(), which returns nothing, but triggers validation, save() which returns the saved object, and ...
1
vote
1answer
778 views
Symfony: problem saving a form object
I am using SF 1.4.8 with Propel ORM for a project. I have an action that allows a user to save their user profile. It looks something like this:
public function executeEditUser(sfwebRequest $request)
...
0
votes
0answers
102 views
Symfony: Model problem
I'm taking over an old Symfony 1.1 project, and when I add a property to schema.yml and run symfony propel:build-all, everything seems to work. However, when I then go to one of the forms that were ...
0
votes
1answer
572 views
Rendering and updating a Symfony form with related records?
I have two tables. I'm rendering fields of two tables (user and user_education). One user can have multiple records (educations details). To edit an user's information, I'm able to retrieve only one ...
0
votes
1answer
804 views
Symfony embedded forms - many to many relation
I'm using symfony 1.4 and Propel as ORM. I have a form that needs to embed some other form in it. The other form is n:m relation that connects customer and some object. I can't find out how to embed ...