0
votes
1answer
65 views

Using Symfony Form 2.3 in Silex

I'm trying to build a Symfony form (in Silex) by name. Using the configuration below, I believe I should be able to call $form = $app['form.factory']->createBuilder('address');, however the ...
0
votes
1answer
444 views

Default datetime data in Silex/Symfony2 forms

I'm trying to create a form that will allow users to edit data. I need to read a value from the a table and pre-populate the form with that data. In the code below I'm trying to set a value of ...
2
votes
1answer
376 views

My transformer doesnt work ( from model data to form data )

I'm building a silex application ( the source is here : https://github.com/Mparaiso/Silex-Blog-App ) In the App\Form\DataTransformer i have a MetadataTransformer class. but the transform function ...
1
vote
1answer
631 views

Symfony/Silex: Form submission does nothing (no errors, nothing returned)

I'm using the most recent version of Silex (without the .phar) with Doctrine DBAL installed, on this signup form page. If I enter invalid details, it returns to that form as excepted. But if the ...
3
votes
1answer
1k views

Silex + Twig: form_widget() not found, even with Symfony Bridge installed

I've been following the documentation at the resource below http://silex.sensiolabs.org/doc/providers/form.html But I get the following error Twig_Error_Syntax: The function "form_widget" does not ...
3
votes
2answers
2k views

How do I override the default template when using Symfony Forms, Twig and SymfonyTwigBridge?

Im using Symfony and Twig in a Silex application. I have a registration page with a form in: {% extends "base.twig" %} {% block title %}Welcome to My Example site{% endblock %} {% block head %} {{ ...
2
votes
1answer
572 views

How do I display Symfony 2 form errors using the Symfony 2 validation component within a silex app?

Background: I'm using Symfony Forms and Symfony Validation components to render a form in my applications registration page in my Silex application. I have the form working correctly, rendering, ...