Giter Site home page Giter Site logo

Comments (4)

bdujon avatar bdujon commented on August 20, 2024 2

For autocomplete since 2.13 you need
public function getParent(): string { return BaseEntityAutocompleteType::class; }

instead of
public function getParent(): string { return ParentEntityAutocompleteType::class; }

https://symfony.com/bundles/ux-autocomplete/current/index.html#usage-in-a-form-with-ajax
at least that was my issue

from ux.

thorstenlbk avatar thorstenlbk commented on August 20, 2024 1

I am getting the error, too.

An error has occurred resolving the options of the form "App\Form\KundendatenAutocompleteField": The option "extra_options" does not exist. Defined options are: "action",

The relevant parts of KundendatenAutocompleteField:

use Symfony\Component\Form\Extension\Core\Type\ChoiceType;
...
class KundendatenAutocompleteField extends ChoiceType
...

Using Symfony\Component\Form\AbstractType or Symfony\Component\Form\Extension\Core\Type\TextType results in the same error.

from ux.

smnandre avatar smnandre commented on August 20, 2024

The extra_options exists in 2.15.0, but it is available for form types extending from:

        return [
            ChoiceType::class,
            TextType::class,
        ];

What does your MemberSingleAutocompleteField descend from ?

from ux.

adalbertus avatar adalbertus commented on August 20, 2024

@bdujon - brilliant! 😄 It is working now. Thank you!

I wonder that maybe it would be worth to add it as a comment in symfony console make:autocomplete-field?
Autogenerated class uses ParentEntityAutocompleteType::class; which is fine when you are not using Ajax but is not otherwise. Error message was missleading here (at least for me).

For example:

Customize your new field class, then add it to a form:
 
     $builder
         // ...
         ->add('user', Foo::class)
     ;

Add somethig like: Change getParent() acordingly if using with Ajax.

from ux.

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.