When using symfony2's form type "collection", how can I validate that at least one form has been submitted?

doctrine, symfony

Solution

With a callback function, call count on your collection.

Problem

I used this tutorial to embed a collection of forms. How can I add validation that will ensure that the form is submitted with at least one form?

Original source