Closed foji2 closed 7 years ago
We try to keep github issues for feature requests and bugs only.
Please have a look at the docs or use StackOverflow for general support and questions.
Btw this is not possible:
protected function configureFormFields(FormMapper $formMapper)
{
$formMapper
->add('address.street')
It s a bug address is an array so it must be possible to add form field ...
I check the docs and hash is never explain so ?
in the docs 👍
namespace Acme\AcmeBundle\Admin;
class UserAdmin extends Admin
{
protected function configureListFields(ListMapper $listMapper)
{
$listMapper
->addIdentifier('id')
->add('firstName')
->add('lastName')
->add('address.street')
->add('address.ZIPCode')
->add('address.town')
;
}
}
So why this not work for me ?
Thanks
The docs are talking about configureListFields
Environment
Hello I got a problem i have a document Place :
I have install sonata admin and i want use form
so I try
But this not work i check log and got :
How i can do that ?
Thanks you