Eve

Results 14 comments of Eve

Did you find a solution ? I have a 4 steps form. I want to modify a property of my entity in the 2nd step and I want to keep...

Hi, I have the same need. I have a 2 steps form. My last/2nd step is an optional step. I show it only if I find some duplication items in...

Hi, it's exactly what I'm trying to do ! I think we should use [iterators in KnpMenu](https://github.com/KnpLabs/KnpMenu/blob/master/doc/04-Iterators.md), see "Filtering only current items". I installed KnpMenuBundle and created my menu as...

Ok thanks... Yet, the code is exactly like this in the documentation, it will be good to correct it ! I test this : ``` $root = $this->get('knp_menu.menu_provider')->get('main'); $menu =...

> If you click on the "edit" symbol on the top left corner of the article, you can correct it and submit a PR. Can you please do that? Ok,...

The idea that I had works. But the only inconvenient is that I have to list manually the association url => item name. ``` public function showAction(Request $request, $article) {...

EDIT : 2016-04-15 Ok, I found the solution with matcher and iterators. DefaultController.php ``` /** * @Route("/my-section/{page}", name="my_section", defaults={"page" = "index"}) */ public function showAction(Request $request, $page) { $root =...