WhiteOctoberAdminBundle icon indicating copy to clipboard operation
WhiteOctoberAdminBundle copied to clipboard

A different take on an AdminBundle for Symfony2

Results 13 WhiteOctoberAdminBundle issues
Sort by recently updated
recently updated
newest added

Previously I have tried Sonata Admin Bundle, but I can't change how this bundle fetch data from one object. See my issue in `https://github.com/sonata-project/SonataAdminBundle/issues/365` Now I'm trying White October Admin...

If I display the following fields in my List eg: ``` firstName lastName country ``` by using: ``` $this->addFields(array( 'firstName, 'lastName', 'country', )) ``` and I want to filter (advanced)...

This is seemingly related somewhat to issue #36 - as per the title, the Doctrine ORM DataManager base admin does not add the BatchActionCollection into the set of actions, but...

I have the following model but the admin throws exception ''' /** \* @ODM\String \* @Assert\Choice(callback = "getChoiceRoles") */ protected $role; ``` public static function getChoiceRoles() { return array( "choice1",...

Hello, I have this exception when I'm testing the Bundle, I can't do anything about it so I'm submiting this bug. I have followed the documentation, here is my code:...

I am trying to install the bundle but I cant make this lines to work. Is this still valid? app/config\routing.yml: _white_october_admin: resource: . type: white_october_admin white_october_admin: resource: "@WhiteOctoberAdminBundle/Resources/config/routing/admin.xml" Get error:...

It's no bad idea to put {{form_enctype(form)}} in edit.html.twig if you want to upload files...

Hi. I'm trying to change a field in one table. I want to show an image, but I can see only text. I've edited the DoctrineORMFieldGuesser.php adding theese lines: case...

Is there any way to manage (CRUD) documents with ReferenceMany or EmbedMany members ?

Maybe a stupid question - is there an easy way to modify a few fields in the form, or easily extend the field processing? E.g. I've got a Speaker entity...