Re: Re: Can i control event execution order?

2013-04-24 Thread Martin Grigorov
gt; tester.clickLink("outer:inner"); > tester.assertRenderedPage(OtherPage.class); > } > > The problem is JavaScript related. WicketTester doesn't support JavaScript. > > Thanks > Per > > > Gesendet: Mittwoch, 24. April 2013 um 09:19 Uhr >

Aw: Re: Can i control event execution order?

2013-04-24 Thread Per Newgro
Gesendet: Mittwoch, 24. April 2013 um 09:19 Uhr > Von: "Martin Grigorov" > An: "users@wicket.apache.org" > Betreff: Re: Can i control event execution order? > > Hi, > > Are you saying that the event of clicking the bookmarkable link (the ) > bubbles to t

Re: Can i control event execution order?

2013-04-24 Thread Martin Grigorov
Hi, Are you saying that the event of clicking the bookmarkable link (the ) bubbles to the ? I think it should not happen. Clicking the link changes the document location... But I may be wrong. A simple solution is to add onclick="Wicket.Event.stop(event); return true;" to the element. This call