I checked out the current PR3 Branch from symfony-sandbox and tried to
build a Form with it (since it didnt work for me with PR2).

My controller contains a register action:

    public function registerAction()
    {
        $user = new User();

        $form = new Form('user', $user, $this->container-
>getValidatorService());
        $form->add(new TextField('name'));
        $form->add(new Textfield('password'));

        return $this->render('MapEditorBundle:User:register',
array('form' => $form));
    }

The view itself is just like in the tutorial:

<?php $view->extend('MapEditorBundle::layout') ?>

<?php echo $form->renderFormTag('#') ?>
  <?php echo $form->renderErrors() ?>
  <?php echo $form->render() ?>
  <input type="submit" value="Send!" />
</form>

I get some output, however, the html is escaped, this is an example of
the html source:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://
www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html;
charset=utf-8" />
        <title>Elenears Erben - Map Editor</title>
    </head>
    <body>

<h1>Hello Application</h1>


&lt;form action=&quot;#&quot; method=&quot;post&quot;&gt;
&lt;table&gt;
&lt;tr&gt;
&lt;td&gt;&lt;label for=&quot;user_name&quot;&gt;Name&lt;/
label&gt;&lt;/td&gt;
&lt;td&gt;
&lt;input id=&quot;user_name&quot; name=&quot;user[name]&quot;
value=&quot;&quot; type=&quot;text&quot; /&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;label for=&quot;user_password&quot;&gt;Password&lt;/
label&gt;&lt;/td&gt;
&lt;td&gt;
&lt;input id=&quot;user_password&quot; name=&quot;user[password]&quot;
value=&quot;&quot; type=&quot;text&quot; /&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;/table&gt;
  <input type="submit" value="Send!" />
</form>

<!-- START of Symfony 2 Web Debug Toolbar --


Is this a current issue with the PR3 branch or is there something
wrong with my code?

-- 
If you want to report a vulnerability issue on symfony, please send it to 
security at symfony-project.com

You received this message because you are subscribed to the Google
Groups "symfony users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en

Reply via email to