Liform icon indicating copy to clipboard operation
Liform copied to clipboard

Missing transformers

Open stevanradovanovic opened this issue 6 years ago • 0 comments

Description

During the implementation of LiformBundle in my project (Symfony 4), I noticed that some transformers are missing. In particular, the transformers for hidden and submit inputs are missing and I got error about that.

This is how my form type looks:

$builder
            ->setMethod('GET')
            ->add('param1', TextType::class)
            ->add('param2', HiddenType::class)
            ->add('search', SubmitType::class);

Creating new transformers has solved the problem so I wonder if we can do the same in Liform library...or maybe there is some other solution?

Thanks!

stevanradovanovic avatar Oct 10 '18 08:10 stevanradovanovic