Re: Wicket: DropDownChoice onChange open response page in right frame

2013-08-07 Thread Jeremie
In fact, pageURL returns nothing. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-DropDownChoice-onChange-open-response-page-in-right-frame-tp4660763p4660771.html Sent from the Users forum mailing list archive at Nabble.com. --

Re: Wicket: DropDownChoice onChange open response page in right frame

2013-08-07 Thread Jeremie
Thanks both for your quick replies. What does top refer to? In my page, I have the following structure: Home.html http://wicket.apache.org";> Home.java public class Home extends WebPage { /** */ private static final long serialVer

RE: Wicket: DropDownChoice onChange open response page in right frame

2013-08-07 Thread Jeremie
and I want to reference the html of BodyFrame. Thanks again, Jeremie From: Jesse Long-2 [via Apache Wicket] [mailto:ml-node+s1842946n4660765...@n4.nabble.com] Sent: August 7, 2013 07:30 To: Jeremie Subject: Re: Wicket: DropDownChoice onChange open response page in right frame Hi Jeremi

Re: Wicket: DropDownChoice onChange open response page in right frame

2013-08-07 Thread Jesse Long
Hi Jeremie, You can use javascript: target.appendJavascript("top.frames['myframename'].location='" + urlFor(TraineeView.class,pageParamaters) + "';"); Cheers, Jesse On 07/08/2013 13:09, Jeremie wrote: Hello, In my research project, I need to create a combo box with a list of choices. I use

Re: Wicket: DropDownChoice onChange open response page in right frame

2013-08-07 Thread Martin Grigorov
Hi, On Wed, Aug 7, 2013 at 1:09 PM, Jeremie wrote: > Hello, > > In my research project, I need to create a combo box with a list of > choices. > I use AJAX and DropDownChoice to perform some action on selection change. > My > application is based on the frames example on Wicket's website: > htt