Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

im trying to get jquery validation to my symfony 2 project for long time. It work fine with default messages. But cant get there custom messages. There is problem with name of inputs. When i try something like this:

rules: {
   xxx_backbundle_offerstype[title]: "required"
},messages: {
   xxx_backbundle_offerstype[title]: "This field is required"
}

I get this error "missing operator after id". I think, it is JS error, but i dont know, how to solve it. Is it actually possible, to use jquery validation inf symfony.

Thank you for any tips

share|improve this question

1 Answer

up vote 0 down vote accepted

try below, use single quotes

rules: {
   'xxx_backbundle_offerstype[title]': "required"
},messages: {
   'xxx_backbundle_offerstype[title]': "This field is required"
}
share|improve this answer
Thank you very much. It solved my problem. – gavec Nov 9 '12 at 18:33
you are Welcome sir! – gowri Nov 9 '12 at 18:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.