You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@wicket.apache.org by Piratenvisier <ha...@yahoo.de> on 2013/06/24 08:01:02 UTC

reset breadcrumb

How can I reset the breadcrumb here:

add(new Button("nextButton")
             {
                 @Override
                 public void onSubmit()
                 {
                     activate(new IBreadCrumbPanelFactory()
                     {
                         @Override
                         public BreadCrumbPanel create(String componentId,
                             IBreadCrumbModel breadCrumbModel)
                         {
                             return new FirstPanel(componentId, 
breadCrumbModel, input);
                         }
                     });
                 }
             });

and here:

add(new BreadCrumbPanelLink("linkToFirst", this, FirstPanel.class));

and is it possible to show the breadcrumb without being a Link ?

Thanks in advance,
Heiner

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org