Re: dynamic crumb trail

2010-09-25 Thread LutherBaker
{ IModel getLabel(); Page gePage(); } put your lazy logic into getPage() impl. -igor -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/dynamic-crumb-trail-tp2550978p2713647.html Sent from the Users forum mailing list archive at Nabble.com

Re: dynamic crumb trail

2010-09-25 Thread Igor Vaynberg
(); } put your lazy logic into getPage() impl. -igor -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/dynamic-crumb-trail-tp2550978p2713647.html Sent from the Users forum mailing list archive at Nabble.com

Re: dynamic crumb trail

2010-09-25 Thread Igor Vaynberg
into getPage() impl. -igor -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/dynamic-crumb-trail-tp2550978p2713647.html Sent from the Users forum mailing list archive at Nabble.com

dynamic crumb trail

2010-09-22 Thread Luther Baker
I have a default template page that contains a ul implementation of a crumb trail. Therefore, the base class template has both the open and close tags of the list element. A few links in the crumb trail are manage by the template class - but I'd like to be able to add a few from the child pages.

Re: dynamic crumb trail

2010-09-22 Thread Igor Vaynberg
create a wrapper that can instantiate pages lazily interface Crumb { IModel getLabel(); Page gePage(); } put your lazy logic into getPage() impl. -igor On Wed, Sep 22, 2010 at 1:01 PM, Luther Baker lutherba...@gmail.com wrote: I have a default template page that contains a ul implementation of