Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8933235
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T09:29:27+00:00 2026-06-15T09:29:27+00:00

Is there any way an entity field can be shown grouped in option groups

  • 0

Is there any way an entity field can be shown grouped in option groups in symfony2 (v.2.1), for example I have something like this in my form class:

$builder->add('account',
                    'entity',
                    array(
                        'class' => 'MyBundle\Entity\Account',
                        'query_builder' => function(EntityRepository $repo){
                            return $repo->findAllAccounts();
                        },
                        'required'  => true,
                        'empty_value' => 'Choose_an_account',
                    );

But (of course) they are displayed as the repository class reads it from the db and I would like to display them grouped in the combobox. This post mentions that featured added to the 2.2 release out of the box, but what options do we 2.1 users have?

The Grouping would be based on a field called Type, lets say I have a getter for that called getType() in my Account entity that returns a string.

Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T09:29:28+00:00Added an answer on June 15, 2026 at 9:29 am

    I did a similar thing when handling with categories.

    First, when you build the form, pass the list of choices as a result from a function getAccountList() as follows:

     public function buildForm(FormBuilderInterface $builder, array $options){
            $builder        
                ->add('account', 'entity', array(
                    'class' => 'MyBundle\Entity\Account',
                    'choices' => $this->getAccountList(),
                    'required'  => true,
                    'empty_value' => 'Choose_an_account',
                ));
    }  
    

    The function should do something like follows (the content depend on the way you structure your result).

    private function getAccountList(){
        $repo = $this->em->getRepository('MyBundle\Entity\Account');
    
        $list = array();
    
        //Now you have to construct the <optgroup> labels. Suppose to have 3 groups
        $list['group1'] = array();
        $list['group2'] = array();
        $list['group3'] = array(); 
    
        $accountsFrom1 = $repo->findFromGroup('group1'); // retrieve your accounts in group1.
        foreach($accountsFrom1 as $account){
            $list[$name][$account->getName()] = $account;
        }
        //....etc
    
        return $list;
    } 
    

    Of course, you can do it more dynamics! Mine is just a brief example!

    You also have to pass the EntityManager to your custom form class. So, define the constructor:

    class MyAccountType extends AbstractType {
    
        private $em;
    
        public function __construct(\Doctrine\ORM\EntityManager $em){
            $this->em = $em; 
        }    
    } 
    

    And pass the EntityManager when you initiate the MyAccountType object.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there any way embed XHTML entity references into XML text without the DOCTYPE
Is there any way to use an Entity as a model, and be able
Is there any way to validate using DataAnnotations in WPF & Entity Framework?
Is there any way I can set a formatter on models that will convert
Is there any way we can fetch X509 Public Cetrificates using c# from AD
Is there any way to update nested documents by id or some other field?
Is there any way to make NHibernate.Linq generate a like query on an integer
When creating a new item; is there any way to access all the field
Is there any way in Notepad++ (or even with another tool) to change the
Is there any way to use Google's API to retrieve a user's current zipcode

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.