Re: [Wicket-user] set focus on TextField

2006-08-24 Thread Eelco Hillenius
On 8/23/06, Mats Norén [EMAIL PROTECTED] wrote: Hi, I've got a panel for adding dates with an add link, when the link is clicked I replace it with a small form with a single TextField (input type=text..). What I would like to do is to set focus on the textfield when I switch panels. Is there

[Wicket-user] wicket 1.2.2

2006-08-24 Thread Nili Adoram
Hi all, How can I download 1.2.2 ? I found no link in wicket download page. Thanks Nili - Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make

Re: [Wicket-user] wicket 1.2.2

2006-08-24 Thread Eelco Hillenius
1.2.2 is not out yet. It will be out soon, maybe this weekend. Eelco On 8/23/06, Nili Adoram [EMAIL PROTECTED] wrote: Hi all, How can I download 1.2.2 ? I found no link in wicket download page. Thanks Nili - Using

[Wicket-user] user is logged in although not through authenticated (jsessionid)

2006-08-24 Thread Nili Adoram
I have an authenticated session extending DefaultAuthenticatedSession. This session authenticates the user against LDAP or DB. My SignIn page does not persist the username and password. This should imply a sign-in page displayed per session. Indeed, if the browser is closed or SignOut page

Re: [Wicket-user] user is logged in although not through authenticated (jsessionid)

2006-08-24 Thread Martijn Dashorst
Tomcat serializes the session to disk when it is shut down properly. When tomcat restarts, it deserializes previously running sessions and has them available for continued use, so a restart of tomcat doesn't invalidate the session. Congratulations! You have created a restartable web application,

Re: [Wicket-user] user is logged in although not through authenticated (jsessionid)

2006-08-24 Thread Johan Compagner
Congratulations! You have created a restartable web application,without loosing currently active users! :))Better then most wicket developers here. How many serialization errors i already have fixed i can't count it anymore... ;)johan

[Wicket-user] Wicket 2.0, when?

2006-08-24 Thread Otan
There's a project that I would like to start but I like to use Wicket 2.0 for this. May I know when will the team release the first beta of Wicket 2.0? So that I can decide whether to wait for the version 2.0 or just start my project using 1.x.

Re: [Wicket-user] Wicket 2.0, when?

2006-08-24 Thread Johan Compagner
when will your product be released?wicket 2.0 will change here and there. But not to much i think.So if you start a new project and can live with some api changes on the road and you don't have to release within 2 or 3 months then wicket 2.0 will be a right choice.johanOn 8/24/06, Otan [EMAIL

Re: [Wicket-user] Wicket 2.0, when?

2006-08-24 Thread Martijn Dashorst
I think 2.0 will still be out for a month or 3-4. It depends on what features we find missing, what works and not, and how many bugs need to be solved from the moment we hit beta. It would be a drag for 2.0 to be half baked so to speak, requiring another API overhaul in a couple of months. The

Re: [Wicket-user] user is logged in although not through authenticated (jsessionid)

2006-08-24 Thread Igor Vaynberg
maybe we create those on purpose to torture you? think about it-IgorOn 8/24/06, Johan Compagner [EMAIL PROTECTED] wrote: Congratulations! You have created a restartable web application,without loosing currently active users! :))Better then most wicket developers here. How many serialization

[Wicket-user] TableModels

2006-08-24 Thread Ayodeji Aladejebi
Is there any way of building tables in wicket that models somethings exactly like its done in Swing Tables where i can code close to this: public MyTableModel(TabularObject t) { } public int getRowCount() { } public int getColumnCount() { } public String getColumnName(int column) {

Re: [Wicket-user] TableModels

2006-08-24 Thread Igor Vaynberg
this interface describes more of a data-grid/matrix type data. it can be easily created by a listview/repeater embedded in a listview/repeater much like gridview/datatables do now. just a different itnerface. -Igor On 8/24/06, Ayodeji Aladejebi [EMAIL PROTECTED] wrote: Is there any way of building

[Wicket-user] J2EE declarative security and wicket...

2006-08-24 Thread Erik Brakkee
Hi, I have seen some examples of how to write a wicket login page, but these examples do not use J2EE declarative security. Is it possible to use J2EE declarative security with wicket? Does the wicket-auth framework support this? Cheers Erik

Re: [Wicket-user] Wicket 2.0, when?

2006-08-24 Thread Erik Brakkee
Martijn Dashorst wrote: The API will change constantly, but not dramatically. i.e. I seriously doubt that *all* components will have to change again. But some minor things are bound to change. I hope the changes will be mostly compatible, if not fully. API changes is what drove me away

Re: [Wicket-user] Wicket 2.0, when?

2006-08-24 Thread Igor Vaynberg
it also explains why java gets its feature improvements at such a snail pace, and why generics/autoboxing are so horribly half baked (imho of course). if you are looking for stability then dont cross the major version threshold. eg we will never horribly break api between 1.2 and 1.3. our primary

Re: [Wicket-user] Wicket 2.0, when?

2006-08-24 Thread Philip A. Chapman
On Thu, 2006-08-24 at 20:15 +0200, Erik Brakkee wrote: Can't wicket use the approach followed by SUN which is never to change an interface in a downward incompatible way but instead to add new APIs and make old ones deprecated or extend them? I believe SUN would have been completely out of

Re: [Wicket-user] Wicket 2.0, when?

2006-08-24 Thread Erik Brakkee
Igor Vaynberg wrote: it also explains why java gets its feature improvements at such a snail pace, and why generics/autoboxing are so horribly half baked (imho of course). if you are looking for stability then dont cross the major version threshold. eg we will never horribly break api between

Re: [Wicket-user] J2EE declarative security and wicket...

2006-08-24 Thread Eelco Hillenius
Should be easy to do: implement a custom IRoleCheckingStrategy and use ((WebRequestCycle)RequestCycle()).getHttpServletRequest.isUserInRole. Eelco On 8/24/06, Erik Brakkee [EMAIL PROTECTED] wrote: Hi, I have seen some examples of how to write a wicket login page, but these examples do not

Re: [Wicket-user] J2EE declarative security and wicket...

2006-08-24 Thread Eelco Hillenius
Like this: public class JEERolesStrategy implements IRoleCheckingStrategy { public boolean hasAnyRole(Roles roles) { HttpServletRequest request = WebRequestCycle.get().getWebRequest().getHttpServletRequest(); for (String role : roles) {

Re: [Wicket-user] J2EE declarative security and wicket...

2006-08-24 Thread Igor Vaynberg
couldnt help yourself could you? :)-IgorOn 8/24/06, Eelco Hillenius [EMAIL PROTECTED] wrote:Like this:public class JEERolesStrategy implements IRoleCheckingStrategy { public boolean hasAnyRole(Roles roles) {HttpServletRequest request

Re: [Wicket-user] J2EE declarative security and wicket...

2006-08-24 Thread Eelco Hillenius
We could consider adding it as a default implementation. But then someone would have to make an example too... Eelco On 8/24/06, Igor Vaynberg [EMAIL PROTECTED] wrote: couldnt help yourself could you? :) -Igor On 8/24/06, Eelco Hillenius [EMAIL PROTECTED] wrote: Like this: public

[Wicket-user] Server Push (COMET / Reverse Ajax)

2006-08-24 Thread Lorin Metzger
Hi, I was searching the mailing lists and noticed a few comments about Reverse Ajax and COMET. Mainly jokes about who would ask about it first :) . Has anybody made any serious attempts to add DWR like reverse-ajax support to wicket? If not does anybody have any suggestions on what the

Re: [Wicket-user] Override RatingPanel Property

2006-08-24 Thread Joe Toth
in MyApplication.propertiesOn 8/23/06, Eelco Hillenius [EMAIL PROTECTED] wrote: In which properties file did you set that? MyRatingPanel.properties orsomething like that? EelcoOn 8/22/06, Joe Toth [EMAIL PROTECTED] wrote: I can't seem override the resource value in the RatingPanel component.

Re: [Wicket-user] Server Push (COMET / Reverse Ajax)

2006-08-24 Thread Eelco Hillenius
Hi, COMET is not implemented as a core feature at this time. I think there is a feature request open for such support with a specific implementation for Jetty. And maybe some users have created something COMET like. Do you have a specific use case where you would like to use it for? That might