Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/abdielcs/expandedcollectionbundle
Symfony bundle for render entity collections as a selectable expanded list.
https://github.com/abdielcs/expandedcollectionbundle
bundle checkbox checkboxes collection expanded symfony symfony-bundle table
Last synced: about 1 month ago
JSON representation
Symfony bundle for render entity collections as a selectable expanded list.
- Host: GitHub
- URL: https://github.com/abdielcs/expandedcollectionbundle
- Owner: abdielcs
- License: mit
- Created: 2016-04-14T13:13:21.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-01-24T19:12:31.000Z (almost 5 years ago)
- Last Synced: 2024-09-30T17:23:06.615Z (about 2 months ago)
- Topics: bundle, checkbox, checkboxes, collection, expanded, symfony, symfony-bundle, table
- Language: PHP
- Homepage:
- Size: 214 KB
- Stars: 12
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
Expanded Collection List
========================Symfony 2 and 3 bundle for rendering a collection of entities as an expanded selectable list.
Include some usefull form types extending the native entity form field, so all entity options
could by used (like query_builder), except expanded and multiple, since all the bundle types are based in those
options setted to true. Read more about [entity type field](http://symfony.com/doc/current/reference/forms/types/entity.html).**Features**
* [Be able to configure wich entity properties or get method should be rendered and how.](Resources/doc/1-fields-configuration.md)
* [Render a collection of entities as an expanded checkbox list.](Resources/doc/2-expanded-onetomany.md)
* [Handling ManyToMany related collection as an expanded checkbox list.](Resources/doc/3-expanded-manytomany.md)
* [Support for bootstrap 3 symfony theme.](Resources/doc/4-bootstrap-3-example.md)Installation
------------### Step 1: Download the Bundle
```bash
$ composer require abdielcs/expanded-collection-bundle
```This command requires you to have Composer installed globally, as explained
in the [Composer documentation](https://getcomposer.org/doc/00-intro.md).### Step 2: Enable the Bundle
```php