Re: Scheduled Wicket courses (Europe) and jWeekend's Global Partner Program

2009-04-19 Thread Erik van Oosten
Hello, The first public jWeekend course in Amsterdam has changed date. It is now June 8-9 (Mon-Tue). More information: http://www.jteam.nl/specials.html There is an early bird discount of 10% (before April 30). Regards, Erik. jWeekend wrote: Our partners in Holland, JTeam [4][5], are pla

Re: Custom URL Handling

2009-04-19 Thread David Leangen
Matt, I have done something similar, but depending on the version of Wicket you use, I wouldn't necessary recommend it. Things can get a little messy. I did this in 1.3.x. IIRC, I was told this was made easier in 1.4. What version are you using? =dml On Apr 20, 2009, at 1:54 PM, Matt

Custom URL Handling

2009-04-19 Thread Matthew Welch
I have been happily using HybridUrlCodingStrategy for the common pages of my current app, however I am now beginning to implement a section which has slightly different requirements for the URL and while I have some idea about where I can start to implement this custom URL handling, I would like th

Re: Good practice for temporary resource reference

2009-04-19 Thread Xhelas
Yes it could. I figured out to override newSessionStore in the application to have control over the undbind session call. I would have then remove the request references registred in the session during its life time at this time. I beleive that I have to remove my ResourceReference from the Shared

Re: Good practice for temporary resource reference

2009-04-19 Thread Scott Swank
Does it make sense to just store them in the Wicket Session? Scott On Sun, Apr 19, 2009 at 4:38 PM, Xhelas wrote: > > Well, nobody has the same probelm as me? Is that a stupid question? > > > Xhelas wrote: >> >> I am doing an application with a lot of dynamical image creation. These >> images n

Re: Good practice for temporary resource reference

2009-04-19 Thread Xhelas
Well, nobody has the same probelm as me? Is that a stupid question? Xhelas wrote: > > I am doing an application with a lot of dynamical image creation. These > images need to be cached client side, but their life time is bounded by > the suer session's lifetime. So I create a lot of image resou

Re: Lazy loading via AJAX on stateless pages?

2009-04-19 Thread Martin Grotzke
Now in the default constructor of my page I added a behavior linking to the page with page parameters and I added such a constructor taking parameters. In this constructor, I set a new AjaxRequestTarget on the request cycle and add some component to the target. When I request my page, I see the aj

Cometd Servlet mapping for wickestuff-push example

2009-04-19 Thread Paolo Marrone
Hi all, first of all, I'm sorry for a wicketstuff question posted on this list, but I cannot find a mailing list for wicketstuff, so I hope someone can help me. I'm a happy user of wicket (great framework!), and because I need also the server-side push feature, I gave a look to the wicketstuf

Scribd

2009-04-19 Thread John Armstrong
Before I start into it, has anyone built a scribd component? John- - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: LinkTree breaks when using twice instances of Firefox (with Unexpected RuntimeException)

2009-04-19 Thread Igor Vaynberg
yes -igor On Sun, Apr 19, 2009 at 1:54 AM, Live Nono wrote: > hi > > In case some one is interested, i found the solution : adding > getPageSettings().setAutomaticMultiWindowSupport(true); solves the > issue. > > I'm quite surprised though because the javadocs of this setting says > it's enabled

Re: Submitting form via Ajax isn't working

2009-04-19 Thread HHB
Yes, you are right. My isssue is solved now, thanks. cpopetz wrote: > > All looks good to me, my guess is that you aren't entering in a name, > and so you're failing validation, but you haven't implemented onError > to add the feedback panel to the target in that case. Also, your > feedback p

Re: Submitting form via Ajax isn't working

2009-04-19 Thread Clint Popetz
All looks good to me, my guess is that you aren't entering in a name, and so you're failing validation, but you haven't implemented onError to add the feedback panel to the target in that case. Also, your feedback panel probably needs setOutputMarkupId(true) to be of any use, given that you're su

Re: Submitting form via Ajax isn't working

2009-04-19 Thread Martin Makundi
You should implement the onError method of the button and update feedback panel to see possible validation errors. ** Martin 2009/4/19 HHB : > Hey, > I have a form and I want to submit it via Ajax: > > > > > > > > > > >

Submitting form via Ajax isn't working

2009-04-19 Thread HHB
Hey, I have a form and I want to submit it via Ajax: public CreateGroupPanel(String id)

Re: "remember me" at login page feature

2009-04-19 Thread Martin Makundi
> If so, could you please provide more code on your TakpAuthorizationStrategy > class ( registration and implementation) All significant part is there, rest is confidential. > In order to use your code I need redirect not logged user with defined > "remember me" cookie from LoginPage to desired p

Re: "remember me" at login page feature

2009-04-19 Thread Khlystov Alexandr
Thanks, for reply Martin! Yes I use wicket authentication, my app: public class HelloWebApplication extends AuthenticatedWebApplication { As I see it is manual operation, and wicket doesn't support this in API. Than I should manually create encryptedKey, and set it to cookie value, and be abl

Re: "remember me" at login page feature

2009-04-19 Thread Martin Makundi
> Can anyone, please, give an example, or direct wicket API description about > "remember me" at login page feature. Are you familiar with regular wicket authentication? In "remember me" you just use e.g., a cookie id to load the user's credentials from db. Nothing special. private static Coo

"remember me" at login page feature

2009-04-19 Thread Khlystov Alexandr
Good day. Can anyone, please, give an example, or direct wicket API description about "remember me" at login page feature. Thanks in advance. -- Khlystov Alexandr - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.o

Re: can't set 'id' attribute to tag

2009-04-19 Thread Khlystov Alexandr
Resolved by myself. I just need to add other elements for listView item under the new WebMarkupContainer. Thanks, Igor. Khlystov Alexandr пишет: Error: WicketMessage: Unable to find component with id 'id' in [MarkupContainer [Component id = idTr]]. This means that you declared wicket:id=i

Re: LinkTree breaks when using twice instances of Firefox (with Unexpected RuntimeException)

2009-04-19 Thread Live Nono
hi In case some one is interested, i found the solution : adding getPageSettings().setAutomaticMultiWindowSupport(true); solves the issue. I'm quite surprised though because the javadocs of this setting says it's enabled by default, which doesn't seem to be the case in fact. Should I open a jira