Giter VIP home page Giter VIP logo

Comments (3)

cedric-g avatar cedric-g commented on July 17, 2024

Hi @aur1mas ,

You are not doing something wrong. I think the errors messages you get come from your CommonBundle:Competition entity, even if you didn't defined any validations through the TeamFilter class it seems the validation is cascading on children. You can avoid this validation by using a custom validation group in TeamFilter.

from lexikformfilterbundle.

aur1mas avatar aur1mas commented on July 17, 2024

Yep, problem was with validation_groups. Added non-existing group (for no validation).

For future generations :) Fixed code looks like:

<?php
namespace SportTV\ManageBundle\Form;

use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormBuilderInterface;
use Symfony\Component\OptionsResolver\OptionsResolverInterface;

use Lexik\Bundle\FormFilterBundle\Filter\Extension\Type\TextFilterType;

class TeamFilter extends AbstractType
{
    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $builder
            ->add(
                'name',
                'filter_text', 
                array(
                    'widget_controls' => false,
                    'widget_control_group' => false,
                    'attr' => array('placeholder' => 'Name'),
                    'condition_pattern' => TextFilterType::PATTERN_CONTAINS
                )
            )
            ->add('competition', 'filter_entity', array(
                'class' => 'CommonBundle:Competition',
                'property' => 'name'
            ))
        ;
    }

    public function getDefaultOptions(array $options)
    {
        return array(
            'validation_groups' => array('no_validation')
        );
    }

    public function getName()
    {
        return 'team_filter';
    }
}

Thanks @cedric-g ;)

from lexikformfilterbundle.

spackmat avatar spackmat commented on July 17, 2024

Hi, I have the same problem, but adding a non existant validation group does not fix it in my case: All filter_entity filter fields still throw invalid form errors, when there isn't a value selected.

Those fields have nullable=false set on their JoinColumn inside the entity class, but no explicit Asserts. When I remove the nullable=false, the invalid form errors still occur.

(Symfony 2.7.0-BETA1 with current dev-versions of LexikFormFilterBundle and Filternator)

Edit: I think, I got something wrong, so have a look at https://stackoverflow.com/questions/29695733/symfony2-lexikformfilterbundle-empty-values-for-filter-entity-cause-form-errors

from lexikformfilterbundle.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.