Ju-v
Ju-v

Reputation: 362

Creating button in Symfony2 forms

Does symfony2 have simple button type(not submit or file) for forms? I looked there(http://symfony.com/doc/current/reference/forms/types.html) and could not find it.

Upvotes: 1

Views: 1582

Answers (2)

Kris
Kris

Reputation: 6112

As an update to this question, as of Symfony 2.3 (released end of may 2013) they do now have button types http://symfony.com/doc/current/reference/forms/types/button.html

Upvotes: 3

Elnur Abdurrakhimov
Elnur Abdurrakhimov

Reputation: 44831

No. Since you don't bind data to a button, it doesn't make sense to have a type for it. Do it using plain HTML.

Upvotes: 1

Related Questions