Tagged Questions
1
vote
0answers
36 views
Object wrappers and forms
I am developing an ecommerce platform and came across a difficulty. Basically, I have in my scenario a Product, Option and OptionValue. A product might have multiple options which might have multiple ...
13
votes
3answers
1k views
Symfony2 Form Dynamic Choice Field With EAV Returned Values
I am creating an E-Commerce Bundle with Symfony2 and Doctrine2. I am applying EAV approach for the product features and product values for unlimited features. For this, I have three basic entities: ...
1
vote
1answer
2k views
Can't get custom error rendering to work in symfony 1.4
I'm tring to customize error rendering in my form according to this example.
Here is my code:
if ($this['message']->hasError()) {
$error_msg = '<ul>';
foreach ...