[Lift] Re: CRUDifier and auto menu generation

2009-09-10 Thread Marcin Jurczuk
Murphy law is working :) After spending 3 hours to find a solution - and post message here - I found it. I have to use ::: instead :: (create and return new list instead add objects to old one by using ::) Question is why this works with one additional autogenerator and doesn't work with more tha

[Lift] Re: CRUDifier and auto menu generation

2009-09-10 Thread ThiƩbaut Champenier
On Thu, Sep 10, 2009 at 12:17 PM, Marcin Jurczuk wrote: > Menu(Loc("home", List("index"), "Home")) :: User.sitemap :: > MyModelWithCRUD.menus Hi Marcin, You should use ::: to concatenate the to lists like this: Menu(Loc("home", List("index"), "Home")) :: User.sitemap ::: MyModelWithCRUD.menus