Re: Re: [Wicket-user] My take on Spring integration

2005-11-12 Thread Igor Vaynberg
ok, lots more refactoring in. lazy init proxies now intercept hashcode,equals,tostring,finalize. i tried implementing writereplace and readresolve but it doesnt seem to be working, getting another weird class cast exception. writereplace works fine, and the object it generates deserializes into

Re: [Wicket-user] How to make static src-attribute for a ImageButton in a ListView?

2005-11-12 Thread Juergen Donnerstag
i guess the hangman is a good example for how to do it. Juergen On 11/12/05, Arto Arffman [EMAIL PROTECTED] wrote: Hi, I have a ListView which has ImageButtons for editing. In IE those images render slowly and it causes unpleasent visual effects. If the src attribute would be exactly the

Re: [Wicket-user] How to make static src-attribute for a ImageButton in a ListView?

2005-11-12 Thread Arto Arffman
Ok. The hint was there, but a little bit deeper. The key was to use PackageResourceReference instead of PackageResource in ImageButton's constructor. 2005/11/12, Arto Arffman [EMAIL PROTECTED]: Nope. I have to repeat the same image with exactly same src. Hangman repeats different images (and they

[Wicket-user] Keeping images outside of WEB-INF

2005-11-12 Thread yongbl
Hi all, I wanted to display images that has been uploaded to a folder in the server.Is this possible? In the examples that I have seen, the images are stored next to the classes. Regards, James Yong Do you Yahoo!? New and Improved Yahoo! Mail - 1GB free storage!

[Wicket-user] wicket bench 0.1.0

2005-11-12 Thread Joni Suominen
I just released a new version of wicket plugin for eclipse. http://www.laughingpanda.org/mediawiki/index.php/Wicket_Bench Current features are listed here: http://www.laughingpanda.org/~inhuman/wicket-bench/docs/features-0.1.html -- Joni Suominen

Re: [Wicket-user] How to make static src-attribute for a ImageButton in a ListView?

2005-11-12 Thread Arto Arffman
Nope. I have to repeat the same image with exactly same src. Hangman repeats different images (and they have different src attributes as they should have) 2005/11/12, Juergen Donnerstag [EMAIL PROTECTED]: i guess the hangman is a good example for how to do it.JuergenOn 11/12/05, Arto Arffman

Re: Re: [Wicket-user] My take on Spring integration

2005-11-12 Thread Christian Essl
Thanks a lot for doing this. Unfortunately I can still not check out the changes. When I can I'll take a look at the LazyInitProxyFactory. Christian On Sat, 12 Nov 2005 01:12:21 -0800, Igor Vaynberg [EMAIL PROTECTED] wrote: ok, lots more refactoring in. lazy init proxies now intercept

Re: [Wicket-user] wicket bench 0.1.0

2005-11-12 Thread Eelco Hillenius
Thanks! Would you feel like combining efforts with the stuff that Igor did (and that's in wicket-stuff cvs as wicketeer)? Eelco On 11/12/05, Joni Suominen [EMAIL PROTECTED] wrote: I just released a new version of wicket plugin for eclipse.

Re: Re: [Wicket-user] My take on Spring integration

2005-11-12 Thread Igor Vaynberg
fixed the serialization problem. it was just too tired last night to see it. -Igor On 11/12/05, Igor Vaynberg [EMAIL PROTECTED] wrote: ok, lots more refactoring in. lazy init proxies now intercept hashcode,equals,tostring,finalize. i tried implementing writereplace and readresolve but it doesnt

Re: [Wicket-user] wicket bench 0.1.0

2005-11-12 Thread Eelco Hillenius
Isn't it a bit strange that Eclipse downloads all these org.eclipse.* jars as dependencies, while it should have that already? Eelco On 11/12/05, Eelco Hillenius [EMAIL PROTECTED] wrote: Thanks! Would you feel like combining efforts with the stuff that Igor did (and that's in wicket-stuff cvs

Re: [Wicket-user] How to make static src-attribute for a ImageButton in a ListView?

2005-11-12 Thread Juergen Donnerstag
Doesn't hangman use PackagedResourceReferences? The important thing is to have the same (static) url. Whether there is the same image referenced ten times or different images doesn't realy matter. Juergen On 11/12/05, Arto Arffman [EMAIL PROTECTED] wrote: Nope. I have to repeat the same image

Re: [Wicket-user] How to make static src-attribute for a ImageButton in a ListView?

2005-11-12 Thread Arto Arffman
And by the way, thank you for your tip :) 2005/11/12, Arto Arffman [EMAIL PROTECTED]: Yes it does. I meant that I responded too hastily at first. When I looked deeper inhangman, I found that clicked Images did have src attributes like I wanted them. 2005/11/12, Juergen Donnerstag [EMAIL

Re: [Wicket-user] remove jsessionid in first page

2005-11-12 Thread Phil Kulak
App servers HAVE to put that in the first URL, because it's really the second (because of the redirect). The server doesn't know if the client is using cookies until the first request comes back, so for the first request it has to use cookies and url rewriting.

Re: [Wicket-user] remove jsessionid in first page

2005-11-12 Thread Eelco Hillenius
Why? It's part of the default header info whether a client accepts cookies or not isn't it? Eelco On 11/12/05, Phil Kulak [EMAIL PROTECTED] wrote: App servers HAVE to put that in the first URL, because it's really the second (because of the redirect). The server doesn't know if the client is

[Wicket-user] Preserve form state

2005-11-12 Thread Matej Knopp
Hi. I know this has been discussed already, but still I'm opening it once more. I think there should be a way to preserve form state without validation and model updating. The use case is following. I have a (complex) form with some fields, that can not be entered directly, i.e. they have

Re: [Wicket-user] How to supply dynamic table header in Wicket Example ExamplePse

2005-11-12 Thread Huiping Yan
Thank you for help. But I couldn't find repeaterexamples in wicket-examples-1.1-rc2. Vivi From: Igor Vaynberg [EMAIL PROTECTED] Reply-To: wicket-user@lists.sourceforge.net To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] How to supply dynamic table header in Wicket Example

Re: Re: [Wicket-user] My take on Spring integration

2005-11-12 Thread Igor Vaynberg
Looking at your code makes me want to think we can use some abstract classes. The fact that you extended SpringInjector instead of ProxyInjector ... i will need to come up with something for that... Do you mind if i put your stuff into the main project? Not sure how to manage this stuff

[Wicket-user] Wicket thread safety

2005-11-12 Thread Gili
Hi, I just wanted to make sure I am remembering Wicket correctly: - Each user has a session associated with it. We identify a user's session using jsessionid. - Each session has a tree of pages associated with it. This means that a Page instance is not shared amongst users. - Each

Re: [Wicket-user] How to supply dynamic table header in Wicket Example ExamplePse

2005-11-12 Thread Igor Vaynberg
That package was not part of 1.1-rc2. It is part of the final 1.1 release. -Igor On 11/12/05, Huiping Yan [EMAIL PROTECTED] wrote: Thank you for help. But I couldn'tfind repeaterexamples inwicket-examples-1.1-rc2.ViviFrom: Igor Vaynberg [EMAIL PROTECTED] Reply-To:

Re: Re: [Wicket-user] My take on Spring integration

2005-11-12 Thread Igor Vaynberg
fixed the serialization problem. it was just too tired last night to see it. -Igor On 11/12/05, Igor Vaynberg [EMAIL PROTECTED] wrote: ok, lots more refactoring in. lazy init proxies now intercept hashcode,equals,tostring,finalize. i tried implementing writereplace and readresolve but it doesnt