I've a reusable (here simplified) custom field type that inherits from textarea type. As default, content can't be empty, so i specified validation_constraint as default option:
namespace Acme\HelloBundle\Form\Type;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Validator\Constraints\NotBlank;
class SmsContentType extends AbstractType
{
public function getDefaultOptions(array $options)
{
return $options + array(
'label' => 'Testo *',
'validation_constraint' => new NotBlank()
);
}
public function getParent(array $options) { return 'textarea'; }
public function getName() { return 'sms_content'; }
}
But leaving the content empty doen't show any error. Not near the field itself and not as bubbled error using form_errors(form).
Where i'm wrong? Oh, i'm using this custom type inside another form:
class UserType extends AbstractType
{
public function buildForm(FormBuilder $builder, array $options)
{
$builder
->add('sms_birthday_template', new SmsContentType(), array(
'label' => 'SMS compleanno',
))
;
}
}