Massimo Giagnoni

Results 5 comments of Massimo Giagnoni

This is currently not possible by only setting some configuration options. It can be done with a custom object action on posts list to show all comments of that post,...

[MGIBlogBundle](https://github.com/mgiagnoni/MGIBlogBundle) shows how this scenario can be managed with the current version of LyraAdminBundle. A button `Comments` (displayed both on posts list and at the top of the post edit...

> who can see which columns/fields? planned > who can perform which actions? possible, not very well tested, not documented :) > who can see which entity screens? planned

1) I think you want to add a choice Field Type to a form. Try this: ``` lyra_admin: models: my_model: fields: myField: widget: choice options: choices: ['choice1','choice2'] ``` Let me...

1) ``` lyra_admin: models: my_model: fields: myField: widget: choice options: choices: {m: Male, f: Female} ``` 2) Is service.xml loaded by your bundle extension class? (See AcmeClassifiedsBundle if you need...