Re: [Wicket-user] Why I recommended Wicket...

2006-12-21 Thread Johan Compagner
nice :) why this thread is our biggest Achilles heal is beyond me.. http://www.nabble.com/Directly-map-a-bean-to-HTML-form-tf2845102.html#a7944709 johan On 12/21/06, karthik Guru [EMAIL PROTECTED] wrote: someone else picked it up too ;-)

[Wicket-user] Is there any event like onTabChangeEvent?

2006-12-21 Thread Carfield Yim
I have a page form which contain a TabbedPanel(), I would like the form show submit button or not depend which tab is clicked. How can I do that? Is there any event like onTabChangeEvent so that I can show or hidden submit button once user click difference tab

Re: [Wicket-user] Is there any event like onTabChangeEvent?

2006-12-21 Thread Johan Compagner
can't you use this method for that: protected WebMarkupContainer newLink(String linkId, final int index) doc: /** * Factory method for links used to switch between tabs. * * The created component is attached to the following markup. Label * component with id: title will be

Re: [Wicket-user] Why I recommended Wicket...

2006-12-21 Thread Paolo Di Tommaso
What do you mean ? Paolo On 12/21/06, Johan Compagner [EMAIL PROTECTED] wrote: why this thread is our biggest Achilles heal is beyond me.. http://www.nabble.com/Directly-map-a-bean-to-HTML-form-tf2845102.html#a7944709 johan On 12/21/06, karthik Guru [EMAIL PROTECTED] wrote: someone

Re: [Wicket-user] Why I recommended Wicket...

2006-12-21 Thread Marc-Andre Houle
I really like the guy who say : which one is the better, emacs or VI. This is the exact same point here and I like the irony of making this statement in that post! Even if I never touch to tapestry, I think it should be good enough. Why in open source (In general, it's not my first mailling

Re: [Wicket-user] Why I recommended Wicket...

2006-12-21 Thread shumbola
Здравствуйте, Marc-Andre. Вы писали 21 декабря 2006 г., 19:05:39: I really like the guy who say : which one is the better, emacs or VI.  This is the exact same point here and I like the irony of making this statement in that post! Even if I never touch to tapestry, I think it should be good

Re: [Wicket-user] Why I recommended Wicket...

2006-12-21 Thread karthik Guru
I think I seriously owe an apology here. I seriously didnt mean to start a flame war. Its just that I c'dnt help posting this - as this was the first time I ran into a wicket related post in the Tapestry user list. and the 'achilles heel' came along later. ( may be i should have seen it coming)

Re: [Wicket-user] Why I recommended Wicket...

2006-12-21 Thread Johan Compagner
you didn't start a flame ware here I just commented on a bit that they think that thread has something to do that is bad with wicket (our Achilles heel) why that is is strange. What was wrong with that thread except that we didn't support and removed something that we didn't want to improve and

Re: [Wicket-user] Login to wicket-app from another site

2006-12-21 Thread Konstantinos Lazouras
Igor, Johan, thank you for your help, yes, the case is from SiteA on ServerA to a ServerB with the wicket app. It is not an sso case, as the user for the wicket app is irrelevant to the user of SiteA and will stay that way. I think the solution is in ... Then that SiteA just goes to a special

[Wicket-user] Constructing a list of links from java

2006-12-21 Thread Dustin Sallings
I have an embarrassingly simple question to which I haven't been able to find a simple answer. I am trying to convert an old struts and tiles/jsp app to wicket. This app has a bunch of links that get added programatically. I'd like my template to have a ul to which I'd

Re: [Wicket-user] Constructing a list of links from java

2006-12-21 Thread bednarz-hannover
Hello Dustin, what do you think about this? I have done it for my portal application some time ago. It uses generics etc. by default and creation of complex menu structures is very ease by the reusage construct MenuPanel which you can use within other panels :-) /** * Navigation link set. *

[Wicket-user] Unit test fail probably cause by authenication

2006-12-21 Thread Carfield Yim
The unit test is just create a WebPage and assert it, stacktrace as below and look like the authenication will forward to Logon page if it is not authenication . However, in the session I have set it always return true if it is unit test. Anybody have any idea? junit.framework.ComparisonFailure:

Re: [Wicket-user] Constructing a list of links from java

2006-12-21 Thread Nino Wael
Use a Listview or repeater? Im using Listview to do something similar... Want an example? regards Nino -Original Message- From: [EMAIL PROTECTED] on behalf of Dustin Sallings Sent: Fri 22-12-2006 06:05 To: wicket-user@lists.sourceforge.net Subject: [Wicket-user] Constructing a list of