Tagged Questions
2
votes
1answer
66 views
Symfony 1.4 Validation Error Unsigned
when i try to save an form in Symfony 1.4 it gives me these errors:
Validation failed in class CmsContentElementFile
4 fields had validation errors:
* 1 validator failed on title (unsigned)
* 1 ...
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
2answers
116 views
Get list of Assert Constraints in FormType Extension in Symfony2.1
I'm trying to implement client side form validation with javascript and I'd like to use the Validation defined in the Entity or the Form by putting them in the fields data- property.
The problem is ...
1
vote
1answer
216 views
Custom Symfony 2 class constraint validator NotEqualTo
I need to create a Symfony 2 custom class constraint validator, to validate that a property is not equal to another (i.e. password can't match username).
My first question is: do I need to implement ...
4
votes
1answer
2k views
Add error to Symfony 2 form element
I check some validation in my controller. And I want to add error to specific element of my form on failure. My form:
use Symfony\Component\Form\FormError;
// ...
$config = new Config();
$form = ...
0
votes
1answer
113 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
1answer
727 views
How to validate a file upload in Symfony2 (ImageValidator)?
I am currently developing an application which uses the newest version of Symfony2. I have some problems validating a form which includes a file upload field.
My form code looks like that ...
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
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
402 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 ...
1
vote
1answer
961 views
Symfony2 data transformer, validator and error message
I asked this question and found out that we can't get the error message thrown by a DataTransformer (according to the only user who answered, maybe it's possible, I don't know).
Anyway, now that I ...
2
votes
1answer
427 views
How to validate sfWidgetFormTextareaTinyMCE
I use symfony 1.4.11. And I have next:
$this->widgetSchema['en']['content'] = new sfWidgetFormTextareaTinyMCE(array(
'width' => 900,
'height' => 300,
'config' ...
0
votes
2answers
370 views
How to validate variable in Symfony 1.4
I use Symfony 1.4.11. I have two tables "companies" and "ads". When user add new ad, he can connect ad with his company.Before it I check, if user have company, for example I have variable ...
1
vote
1answer
2k views
PreValidation in Symfony 1.4 for embedForm with sfValidatorCallback
I have a SymfonyForm which has 1:n embedForm(s). The main form and the embedForm class got their own PreValidation, which implements a conditional validation.
A part of the EmbedForm class looks like ...