We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I create a form like this :
$categories = ['Gestion', 'other' => 'Autre catégorie']; $formProject = new Form('project_category'); $formProject->add(new Choice('category', ['label' => 'Catégorie', 'choices' => $categories]));
The result is :
<select id="project_category_category" name="project_category[category]"> <option value="Gestion">0</option> <option value="Autre catégorie">other</option> </select>
but it shoud be this :
<select id="project_category_category" name="project_category[category]"> <option>Gestion</option> <option value="other">Autre catégorie</option> </select>
Can you fix it please ?
The text was updated successfully, but these errors were encountered:
ElGigi
No branches or pull requests
I create a form like this :
The result is :
but it shoud be this :
Can you fix it please ?
The text was updated successfully, but these errors were encountered: