How to add component without html wicket:id?

2013-10-05 Thread mike.hua
I want to add a component in wicket page without to write a wicket:id into html page. The types and numbers of the components are arbitrary, and will be determined in the program code. May I have any solutions? Thanks a lot! -- View this message in context:

Re: How to add component without html wicket:id?

2013-10-05 Thread Francois Meillet
You should read https://cwiki.apache.org/confluence/display/WICKET/ListView+and+other+repeaters and http://www.wicket-library.com/wicket-examples/repeater/ François Meillet Formation Wicket - Développement Wicket Le 5 oct. 2013 à 11:31, mike.hua hz...@sohu.com a écrit : I want to add a

Refresh whole site with iframes

2013-10-05 Thread MartinoSuperman
Hi, I am using frames in Wicket in the website I am building. Unfortunately, when I sign out in my authenticated webapplication it only refreshes that frame. The other irames not. I am using this technique of frames: http://www.wicket-library.com/wicket-examples/frames/ So, my question is as

Re: How to add component without html wicket:id?

2013-10-05 Thread Paul Bors
See also chapter 12 Displaying multiple items with repeaters of the Wicket Free Guide: http://wicket.apache.org/guide/ ~ Thank you, Paul C Bors On Oct 5, 2013, at 7:08, Francois Meillet francois.meil...@gmail.com wrote: You should read

Re: Refresh whole site with iframes

2013-10-05 Thread Paul Bors
Are all the frames running in the same wicket app? Or do you have a wicket app nested inside some other site? ~ Thank you, Paul C Bors On Oct 5, 2013, at 9:46, MartinoSuperman martinosuper...@live.nl wrote: Hi, I am using frames in Wicket in the website I am building.

Re: Refresh whole site with iframes

2013-10-05 Thread MartinoSuperman
Hi, They are all running on the same wicket app. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Refresh-whole-site-with-iframes-tp4661720p4661724.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Refresh whole site with iframes

2013-10-05 Thread Paul Bors
So why use iFrames and not Panels? With Panels you don't have to worry about it because it's a single page at all times. With iFrames you could do it with JavaScript given all frames are hosted on the same domain: parent.location.assisgn(URL to login page); Where parent is the root window of