Tagged Questions
1
vote
0answers
53 views
Choose/Avoid Symfony Forms
I am using Symfony.
I am exploring Symfony Forms and exploring its benifit and drawback.
I guess the main use of using these forms is the validation part.
But I need to change the html provided to ...
0
votes
1answer
41 views
CSV Upload - mime types
Hi I'm trying to upload a CSV file using the following form code:
$this->widgetSchema ['file'] = new sfWidgetFormInputFile();
$this->setValidator('file', new sfValidatorFile(array(
...
0
votes
1answer
20 views
Validating 2 forms in the action/view
I have 2 forms on a page, that I'd like to validate separately.
I have the following:
public function executeNew(sfWebRequest $request)
{
$this->propertyForm = new AdminNewPropertyForm();
...
2
votes
3answers
87 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 -
...
-1
votes
1answer
74 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
1answer
47 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
79 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
29 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
85 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
98 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 ...
1
vote
2answers
161 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
1answer
240 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
1answer
23 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
79 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
...
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 ...
0
votes
1answer
45 views
Passing values to forms
I have a form, that I'd like to display a select list, where the user can select an item and save.
What I need to do though, is pass a value to the form:
$form = new TestForm($id)
How do I then ...
1
vote
1answer
226 views
sfWidgetFormDoctrineChoice and select list values
I have a table with items in the following:
id | value
1 | 12
2 | 14
3 | 16
I'm using a sfWidgetFormDoctrineChoice widget which has the following:
$this->widgetSchema['value'] = new ...
0
votes
1answer
45 views
Config “development” enviroment for developer
I'm developing an open source application (OrangeHRM) using Symfony framework. How can I change the environment of the project from production to development?
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 ...
0
votes
1answer
90 views
How to get the last inserted id of embed form and store it in parent form : symfony
I have to parent form called EventForm and embed form called as RegisterForm. If your is not logged in means i want to show register form. Registration working fine with embed form. But after ...
0
votes
1answer
193 views
How to create grouped form fields in symfony 1.4
I want to group the form fields like field set or simply enclosed by div. My form needs to be look like below
<form>
<div class="step-1">
Field 1
Field 2
</div>
<div ...
-1
votes
1answer
106 views
Add a form of another module
I have a module called main which is my default module and a module called song.
I want to put into my main module an "add form" of my song module.
I don't know if I have to use component, how and ...
0
votes
2answers
277 views
Overriding Symfony Form's Save Function
I have two issues, need some help with.
I have a table which is referenced by a foreign key to a second table:
member_child:
_attributes: { phpName: MemberChild }
id: { type: INTEGER, size: ...
1
vote
2answers
442 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
1answer
144 views
saving embeded form values based on user session data
I have a form that has many embedded forms, which are select lists.
What I'm ideally looking to do, is to save the select list values.
I can get the form values by using:
...
0
votes
3answers
153 views
How to prevent form saving in symfony?
I have a general form which is based on a model class named 'factor'. in that form, there is an embedded form named 'customer', which is based on a model class named 'customer'.
Here is the related ...
0
votes
2answers
542 views
Symfony: Allow multiple mime-types
I am trying to allow multiple mime-types to be included in my file upload. I tried something like this :
$this->validatorSchema['filename'] = new sfValidatorFile(array(
'required' => ...
0
votes
3answers
587 views
Symfony form values do not bind
I am using Symfony 1.4 forms for a simple login module. The form, pretty basic has it's code listed below:
<?php
class LoginForm extends sfFormSymfony
{
public function configure()
{
...
0
votes
2answers
223 views
How to save an sfForm which contains doctrine embedded forms?
I have a doctrine form (KanoonGoodForm) based on KanoonGood model class, which looks like this:
class KanoonGoodForm extends BaseKanoonGoodForm
{
public function configure()
{
...
0
votes
0answers
146 views
Form of embeded forms is not displayed using symfony
I have a model class (named KanoonGood), which its corresponding Form class is:
class KanoonGoodForm extends BaseKanoonGoodForm
{
public function configure()
{
...
0
votes
2answers
379 views
Symfony 1.4, storing an uploaded file size and name
I use sfWidgetFormInputFileEditable in my form for file handling purpose.
Here is the code:
/* File */
$this->widgetSchema['file_addr'] = new sfWidgetFormInputFileEditable(array(
'label' ...
0
votes
1answer
141 views
embedForm extra Field hidden
part of my code in listForm.class.php:
public function configure() {
$list_id = $this->getOption('list_id');
$endkunde_id = $this->getOption('endkunde_id');
$shopname_id = 1;
...
0
votes
1answer
115 views
symfony create & validate dynamic tabular
I want to create a dynamic tabular with input type text-field. After hitting the last row, one new row with a same input type text-field should be appear and the validation from the server side should ...
0
votes
0answers
100 views
ahDoctrineEasyEmbeddedRelationsPlugin after deleting objects issue
I use ahDoctrineEasyEmbeddedRelationsPlugin to manage my embedded forms, the plugin work fine in creating and editing related objects but I have a problem wile deleting those objects :
when I check ...
0
votes
3answers
195 views
In Symfony disabled field doesn't sent in request
In Symfony 1.4
if i have form contain disabled fields
when i submit the form the disabled fields doesn't send in form fields
0
votes
1answer
163 views
Symfony put form data into sfRequest in link submission
Using Symfony I created a form in the backend. I have a submit button, which is used to save the form. I need to add another link (besides submit button) to the form that is supposed to send form data ...
0
votes
1answer
145 views
Two sfValidatorDoctrineUnique on the same form?
I have one symfony form and want to do two unique validation on fields (Fname,Lname) in a postVlidator
$this->validatorSchema->setPostValidator(new sfValidatorDoctrineUnique
...
1
vote
1answer
512 views
Symfony 1.4 embedded form fields at the same indent
I have two models in my Symfony application. First one is Blog:
Blog:
columns:
name: { type: string(20), notnull: true, unique: true }
title: { type: string(255), notnull: true }
...
1
vote
2answers
264 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:
...
1
vote
1answer
660 views
Adding a new user field to sfGuard user Admin Form
I am trying to add a custom field to the user form in the sfGuard plugin.
I have created the column in the database and added the widgetschema for the field. It is showing up correctly in the form, ...
0
votes
1answer
134 views
symfony - trying to merge two forms but I get a constraint error
I've goth this schema.yml
Makeproduct:
actAs:
Timestampable: ~
columns:
product_id: { type: integer(8), notnull: true }
ingredient_id: { type: integer(8), notnull: true }
...
0
votes
2answers
766 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' ...
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 ...
0
votes
1answer
132 views
using ahDoctrineEasyEmbeddedRelationsPlugin to embed i18n Translation
I'm using ahDoctrineEasyEmbeddedRelationsPlugin to add dynamic i18n translations to my object, so I wrote this in my object Form class
$this->embedRelations(array(
'Translation' => array(
...
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 ...
0
votes
1answer
276 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: ...
3
votes
1answer
652 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 ...
0
votes
1answer
717 views
Embedded forms in Symfony 1.4: why do I have to use a wrapper?
I'm building a form allowing me to edit all the row of a given table at the same time with Symfony 1.4.
To do so I've used embedded forms. My solution is working but I'm wondering why do I have to use ...
0
votes
1answer
409 views
symfony - change form values in form callbackvalidator
I've been struggling with this for a few days and have not being able to come up with the answer. I need to change a form value after an initial submit. The value will be retrieved from an external ...
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 ...





