Reputation: 362
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
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
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