Re: [Wicket-user] Wicket 1.2 and Hibernate 3 slow

2006-08-17 Thread Nino Wael
@lists.sourceforge.net Subject: Re: [Wicket-user] Wicket 1.2 and Hibernate 3 slow   wicket will not sniff (call getModelObject()) on all the components when it just have a request to it. It does ofcourse do that when rendering the page. Because the objects are needed then. And that could be the thing that is

Re: [Wicket-user] Wicket 1.2 and Hibernate 3 slow

2006-08-17 Thread Nino Wael
Please discard the previous mail… It was another problem..   Regards Nino   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nino Wael Sent: 17. august 2006 10:55 To: wicket-user@lists.sourceforge.net Subject: [Wicket-user] Wicket 1.2 and Hibernate 3 slow   Hi

Re: [Wicket-user] Wicket 1.2 and Hibernate 3 slow

2006-08-17 Thread Johan Compagner
wicket will not sniff (call getModelObject()) on all the components when it just have a request to it.It does ofcourse do that when rendering the page. Because the objects are needed then.And that could be the thing that is different with ajax. Because you don't render the complete page. johanOn 8/

Re: [Wicket-user] Wicket 1.2 and Hibernate 3 slow

2006-08-17 Thread Korbinian Bachl
: [Wicket-user] Wicket 1.2 and Hibernate 3 slow Hi   I have some pages where I use Hibernate beans to hold the contents of my wicket componts, for example if I have a listbox then each dataItem is a Hibernate bean. There seem to be a performance problem with this when I have

[Wicket-user] Wicket 1.2 and Hibernate 3 slow

2006-08-17 Thread Nino Wael
Hi   I have some pages where I use Hibernate beans to hold the contents of my wicket componts, for example if I have a listbox then each dataItem is a Hibernate bean. There seem to be a performance problem with this when I have postbacks to the page, when using AJAX it does not seem to be

Re: [Wicket-user] Wicket 1.2 forms without suppressAccessChecks?

2006-07-05 Thread Matej Knopp
You get the error because you are using CompoundPropertyModel and has the security manager in tomcat turned on. CompoundPropertyModel uses introspection to set / get properties and for doing that, it needs to run with permission java.lang.reflect.ReflectPermission suppressAccessChecks You can

[Wicket-user] Wicket 1.2 forms without suppressAccessChecks?

2006-07-04 Thread Thomas Lee
Hi all, I'm very new to Wicket, so this is most likely a misunderstanding on my part, but I've got code that looks something like the following (all namespace & import info stripped out for brevity): // BEGIN // Timesheet.java public class Timesheet implements Serializable { private String

Re: [Wicket-user] Wicket 1.2 and Websphere 5.1.0/JBoss 3.2.7.

2006-06-28 Thread Johan Compagner
curious what it then was.. What does a IDE do that you have at debug/runtime problems?johanOn 6/28/06, A. Zwaan < [EMAIL PROTECTED]> wrote: Lo all,   I found the problem... It was the JBoss IDE in Eclipse that was causing my memory problems. I thought I'd try running it outside of

Re: [Wicket-user] Wicket 1.2 and Websphere 5.1.0/JBoss 3.2.7.

2006-06-28 Thread A. Zwaan
Lo all,   I found the problem... It was the JBoss IDE in Eclipse that was causing my memory problems. I thought I’d try running it outside of Eclipse for a change (like we’re doing with Websphere), resulting in about the same performance as Websphere. I guess the JBoss IDE can’t handle t

Re: [Wicket-user] Wicket 1.2 and Websphere 5.1.0/JBoss 3.2.7.

2006-06-27 Thread Martijn Dashorst
Tip from Flip: Use the yourkit profiler, start your server and before you hit the page in question, take a memory snapshot. Hit the page a couple of times, and take another snapshot. Then compare the two snapshots. Try to find the page in question and see what is kept in memory. If you use final

Re: [Wicket-user] Wicket 1.2 and Websphere 5.1.0/JBoss 3.2.7.

2006-06-27 Thread Eelco Hillenius
If you can't profile directly, you might want to put in a inspector page such as the wicket examples have that (see the 'i' icon in the top left corner of wicket-examples apps), and see if there are any extreme things going on. Eelco On 6/27/06, A. Zwaan <[EMAIL PROTECTED]> wrote: > > > > > Hi M

Re: [Wicket-user] Wicket 1.2 and Websphere 5.1.0/JBoss 3.2.7.

2006-06-27 Thread A. Zwaan
Hi Martijn,   We have ‘deployment’ mode turned on, and to my knowledge no larger pagemap cache or other configuration settings.     Kinds regards,   Arjan Zwaan.     FINAN Financial Analysis Postbus 4155 3006 AD Rotterdam Tel: +31 10 8508500 www.finan.nl DISCLAIMER: This st

Re: [Wicket-user] Wicket 1.2 and Websphere 5.1.0/JBoss 3.2.7.

2006-06-26 Thread Martijn Dashorst
Hi Arjan! Do you deploy in 'development' mode or in 'deployment' mode? Do you use specific configuration items, such as a larger pagemap cache? Martijn On 6/26/06, A. Zwaan <[EMAIL PROTECTED]> wrote: > > > > > Hello, > > > > Is anyone experiencing problems with using applications with Wicket 1.2

[Wicket-user] Wicket 1.2 and Websphere 5.1.0/JBoss 3.2.7.

2006-06-26 Thread A. Zwaan
Hello,   Is anyone experiencing problems with using applications with Wicket 1.2 on JBoss 3.2.7?   When I run it on JBoss 3.2.7 it seems to be running slower with every page I go to, and eventually I get an OutOfMemoryError, while it runs fine on Websphere 5.1.0. I had no problems with

Re: [Wicket-user] Wicket 1.2 ListView changes

2006-05-29 Thread Johan Compagner
you can't use a CompoundPropertyModel as a non compound model..you have to use a property model for that.On 5/27/06, Brent Roberts < [EMAIL PROTECTED]> wrote:With Wicket 1.1, I was able to do the following within a Form: protected void populateItem(ListItem listItem) {ImportFiel

[Wicket-user] Wicket 1.2 ListView changes

2006-05-27 Thread Brent Roberts
With Wicket 1.1, I was able to do the following within a Form: protected void populateItem(ListItem listItem) { ImportField field = (ImportField) listItem.getModelObject(); IModel model = new CompoundPropertyModel(field); WicketUtil.addComponents(

Re: [Wicket-user] Wicket 1.2 released!

2006-05-27 Thread VGJ
Comet also works great for scrubbing toilets. On Sat, 2006-05-27 at 18:42 +0200, Timo Stamm wrote: Damn those buzzword-inventors. I had to google for 2 minutes just to find that "comet" is a stupid name for pushing data from the server. Timo Igor Vaynberg schrieb: > hehe, we had a pool

Re: [Wicket-user] Wicket 1.2 released!

2006-05-27 Thread Timo Stamm
Damn those buzzword-inventors. I had to google for 2 minutes just to find that "comet" is a stupid name for pushing data from the server. Timo Igor Vaynberg schrieb: hehe, we had a pool on when someone was going to mention wicket comet integrationwho won? -Igor On 5/24/06, Marco Gei

Re: [Wicket-user] Wicket 1.2 released!

2006-05-24 Thread Igor Vaynberg
hehe, we had a pool on when someone was going to mention wicket comet integrationwho won?-IgorOn 5/24/06, Marco Geier < [EMAIL PROTECTED]> wrote:You guys really rock! Thank you all!That release is just in time for me, i'll release out wicket-based auction-app next week!I'll keep you updated (si

Re: [Wicket-user] Wicket 1.2 released!

2006-05-24 Thread Marco Geier
You guys really rock! Thank you all! That release is just in time for me, i'll release out wicket-based auction-app next week! I'll keep you updated (since i'm using some "comet"-style polling, which could be an interesting extension to wicket, but i've got to clean it up first and see how it pe

Re: [Wicket-user] Wicket 1.2 released!

2006-05-24 Thread Timothy Bennett
On 5/24/06, Martijn Dashorst <[EMAIL PROTECTED]> wrote: I'm planning on putting them up on ibiblio. Maybe tonight, but definitely later this week. It also depends on the maven team to actually upload the distributions.Right.. the "downside" of relying on ibiblio... Fantastic! Congrats to the Wicket

Re: [Wicket-user] Wicket 1.2 released!

2006-05-24 Thread Martijn Dashorst
I'm planning on putting them up on ibiblio. Maybe tonight, but definitely later this week. It also depends on the maven team to actually upload the distributions.MartijnOn 5/24/06, Timothy Bennett <[EMAIL PROTECTED]> wrote: Will the 1.2 final release (along with wicket-extensions, wicket-spring, e

Re: [Wicket-user] Wicket 1.2 released!

2006-05-24 Thread Timothy Bennett
Will the 1.2 final release (along with wicket-extensions, wicket-spring, et.al.) be distributed to the ibiblio maven2 repo, or will they only be distributed to the wicketframework.org maven2 repo?  The sourceforge-hosted maven2 repo has some serious connectivity and bandwidth issues...-- timothy

Re: [Wicket-user] Wicket 1.2 released!

2006-05-24 Thread Bruno Borges
42 _______Wicket-user mailing listWicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user-- Wicket 1.2 is coming! Write Ajax applications without touching _javascript_! -- http://wicketframework.org -- Bruno BorgesSumma Technologies do Brasil Ltda.(11) 8565-7739 - (11) 3846-1622

Re: [Wicket-user] Wicket 1.2 released!

2006-05-24 Thread Martijn Dashorst
. Click to learn morehttp://sel.as-us.falkag.net/sel?cmdlnk&kid7521&bid$8729&dat1642 ___Wicket-user mailing listWicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user-- Wicket 1.2 is coming! Write Ajax applications without touching _javascript_!-- http://wicketframework.org

Re: [Wicket-user] Wicket 1.2 released!

2006-05-24 Thread Vincent Jenks
Just in time, sweet! Great work guys! Truly an amazing framework and amazing piece of software - the best! Now, where's that book? ;) - just jokes...it might be nice to have a day off, eh? -v On 5/24/06, middledot <[EMAIL PROTECTED]> wrote: A big thank you for your exceptional dedication to

Re: [Wicket-user] Wicket 1.2 released!

2006-05-24 Thread middledot
A big thank you for your exceptional dedication to the project. Les -- View this message in context: http://www.nabble.com/Wicket+1.2+released%21-t1673750.html#a4538950 Sent from the Wicket - User forum at Nabble.com. --- All the advantages o

Re: [Wicket-user] Wicket 1.2 released!

2006-05-24 Thread Mats Norén
Congrats! A job well done!! On 5/24/06, David Leangen <[EMAIL PROTECTED]> wrote: Congratulations! Excellent job!! --- All the advantages of Linux Managed Hosting--Without the Cost and Risk! Fully trained technicians. The highest number of

Re: [Wicket-user] Wicket 1.2 released!

2006-05-24 Thread David Leangen
Congratulations! Excellent job!! --- All the advantages of Linux Managed Hosting--Without the Cost and Risk! Fully trained technicians. The highest number of Red Hat certifications in the hosting industry. Fanatical Support. Click to learn m

Re: [Wicket-user] Wicket 1.2 released!

2006-05-24 Thread Dipu
Great , congrats to everyone involved.     Cheers Dipu

Re: [Wicket-user] Wicket 1.2 released!

2006-05-24 Thread karthik Guru
Great stuff! congratulations to all developers! --- All the advantages of Linux Managed Hosting--Without the Cost and Risk! Fully trained technicians. The highest number of Red Hat certifications in the hosting industry. Fanatical Support. Clic

Re: [Wicket-user] Wicket 1.2 released!

2006-05-24 Thread Alexandru Popescu
Congrats! Big time for Wicket! ./alex -- .w( the_mindstorm )p. On 5/24/06, Martijn Dashorst <[EMAIL PROTECTED]> wrote: The Wicket project has released Wicket 1.2. Wicket is a Java component based web application framework licensed under the open source Apache 2 license. Wicket allows Java dev

Re: [Wicket-user] Wicket 1.2 released!

2006-05-24 Thread Ali Zaid
Congrate to all of us!!! I have mixed feelings, I'm very happy it's out Thanks for the wonderful team!!! I'm downloading now!!! Regards, Ali On 5/24/06, Martijn Dashorst <[EMAIL PROTECTED]> wrote: The Wicket project has released Wicket 1.2. Wicket is a Java component based web application fr

[Wicket-user] Wicket 1.2 released!

2006-05-24 Thread Martijn Dashorst
The Wicket project has released Wicket 1.2. Wicket is a Java component based web application framework licensed under the open source Apache 2 license. Wicket allows Java developers to create highly dynamic web applications using plain Java and HTML. This i

[Wicket-user] Wicket 1.2-rc4 available

2006-05-16 Thread Martijn Dashorst
Wicket 1.2-rc4 available The Wicket project has released the fourth release candidate of the 1.2 effort. We expect this to be the final candidate and if no serious bugs are found we will release 1.2 final later this week. This is our fourth release

Re: [Wicket-user] Wicket 1.2-rc4 available

2006-05-16 Thread Timo Stamm
No mention in the latest news? http://wicket.sourceforge.net/wicket-1.2/index.html Martijn Dashorst schrieb: Wicket 1.2-rc4 available The Wicket project has released the fourth release candidate of the 1.2 effort. We expect this to be the final candidate and if no

Re: [Wicket-user] Wicket 1.2 ?

2006-05-08 Thread Igor Vaynberg
if you quit checking your email every five seconds maybe you will get it done sooner! :)-IgorOn 5/8/06, Eelco Hillenius < [EMAIL PROTECTED]> wrote:Working on it at this actual moment :) Writing, writing, writing. EelcoOn 5/8/06, Mark Derricutt <[EMAIL PROTECTED]> wrote:> On 5/8/06, Eelco Hillenius

Re: [Wicket-user] Wicket 1.2 ?

2006-05-08 Thread Eelco Hillenius
Working on it at this actual moment :) Writing, writing, writing. Eelco On 5/8/06, Mark Derricutt <[EMAIL PROTECTED]> wrote: On 5/8/06, Eelco Hillenius <[EMAIL PROTECTED]> wrote: > For those people that have reacted, I want to let you know that I gave > the complete list to Manning. They didn

Re: [Wicket-user] Wicket 1.2 ?

2006-05-08 Thread Mark Derricutt
On 5/8/06, Eelco Hillenius <[EMAIL PROTECTED]> wrote: For those people that have reacted, I want to let you know that I gavethe complete list to Manning. They didn't want to include everyone on*sniff* ah well - roll on the publication :)

Re: [Wicket-user] Wicket 1.2 ?

2006-05-08 Thread Eelco Hillenius
not explained well, I won't understand it.) > > > > Frank Silbermann > > > > -Original Message- > > From: [EMAIL PROTECTED] > > [mailto:[EMAIL PROTECTED] On Behalf Of Eelco > > Hillenius > > Sent: Wednesday, February 08, 2006 3:39 PM > >

Re: [Wicket-user] Wicket 1.2-rc3 released

2006-05-03 Thread Martijn Dashorst
Of course the url should read http://wicketframework.org/maven2And I'll try to upload them, but it is too much manual labour to add the source jars as well (see comment on automating that) MartijnOn 5/4/06, Timothy Bennett <[EMAIL PROTECTED]> wrote: On 5/1/06, Martijn Dashorst < [EMAIL PROTECTED]>

Re: [Wicket-user] Wicket 1.2-rc3 released

2006-05-03 Thread Igor Vaynberg
heh, i just now noticed this - martijn you kick ass!-IgorOn 5/3/06, Timothy Bennett <[EMAIL PROTECTED] > wrote:On 5/1/06, Martijn Dashorst <[EMAIL PROTECTED]> wrote: All,This release contains all major packages of the wicket project, including wicket, extensions, quickstart, spring, spring annot

Re: [Wicket-user] Wicket 1.2-rc3 released

2006-05-03 Thread Timothy Bennett
On 5/1/06, Martijn Dashorst <[EMAIL PROTECTED]> wrote: All,This release contains all major packages of the wicket project, including wicket, extensions, quickstart, spring, spring annot and auth roles. As an experiment I also created our own maven repository on the sourceforge servers. You can find

Re: [Wicket-user] wicket 1.2 rc3: SubmitLink.getForm endless loop causes StackOverflowError

2006-05-03 Thread Johan Compagner
EMAIL PROTECTED] >> To: <wicket-user@lists.sourceforge.net>> Sent: Wednesday, May 03, 2006 10:58 AM > Subject: Re: [Wicket-user] wicket 1.2 rc3: SubmitLink.getForm endless loop causes StackOverflowError>>> already fixed>> On 5/3/06, Ari Suutari < [EMAIL PROTECTED]&g

Re: [Wicket-user] wicket 1.2 rc3: SubmitLink.getForm endless loop causes StackOverflowError

2006-05-03 Thread Igor Vaynberg
rom svn.> I'm just a little worried by new bugs being introduced at > this late in RC phase of release.>> Ari S.>> - Original Message -> From: "Johan Compagner" <[EMAIL PROTECTED] >> To: <wicket-user@lists.sourceforge.net>> Sent: W

Re: [Wicket-user] wicket 1.2 rc3: SubmitLink.getForm endless loop causes StackOverflowError

2006-05-03 Thread Eelco Hillenius
late in RC phase of release. Ari S. - Original Message - From: "Johan Compagner" <[EMAIL PROTECTED]> To: Sent: Wednesday, May 03, 2006 10:58 AM Subject: Re: [Wicket-user] wicket 1.2 rc3: SubmitLink.getForm endless loop causes StackOverflowError already fixed

Re: [Wicket-user] wicket 1.2 rc3: SubmitLink.getForm endless loop causes StackOverflowError

2006-05-03 Thread Ari Suutari
2006 10:58 AM Subject: Re: [Wicket-user] wicket 1.2 rc3: SubmitLink.getForm endless loop causes StackOverflowError already fixed On 5/3/06, Ari Suutari <[EMAIL PROTECTED]> wrote: Looks like your problem is right here: /** * @return the Form for which this submit link submits */ public f

Re: [Wicket-user] wicket 1.2 rc3: SubmitLink.getForm endless loop causes StackOverflowError

2006-05-03 Thread Johan Compagner
sively :-(Ari S.- Original Message -From: "Ari Suutari" <[EMAIL PROTECTED] >To: <wicket-user@lists.sourceforge.net>Sent: Wednesday, May 03, 2006 10:49 AMSubject: [Wicket-user] wicket 1.2 rc3: SubmitLink.getForm endless loop causes StackOverflowError > Hi,>>

Re: [Wicket-user] wicket 1.2 rc3: SubmitLink.getForm endless loop causes StackOverflowError

2006-05-03 Thread Ari Suutari
utari" <[EMAIL PROTECTED]> To: Sent: Wednesday, May 03, 2006 10:49 AM Subject: [Wicket-user] wicket 1.2 rc3: SubmitLink.getForm endless loop causes StackOverflowError Hi, After updating from wicket 1.2 rc2 to wicket 1.2 rc3, we started getting StackOverflow

[Wicket-user] wicket 1.2 rc3: SubmitLink.getForm endless loop causes StackOverflowError

2006-05-03 Thread Ari Suutari
Hi, After updating from wicket 1.2 rc2 to wicket 1.2 rc3, we started getting StackOverflowErrors like this: java.lang.StackOverflowError wicket.markup.html.form.SubmitLink.getForm(SubmitLink.java:172) wicket.markup.html.form.SubmitLink.getForm(SubmitLink.java:172) wicket.markup.html.form.SubmitL

Re: [Wicket-user] Wicket 1.2-rc3 released

2006-05-02 Thread Johan Compagner
by the way turn of debug logging so that we don't enter the "test" mode by serializing the page to check if it is valid.On 5/2/06, Johan Compagner <[EMAIL PROTECTED]> wrote: ok found and fixed it.johanOn 5/2/06, Johan Compagner <[EMAIL PROTECTED]> wrote: hmm thats strange.where does that weakref

Re: [Wicket-user] Wicket 1.2-rc3 released

2006-05-02 Thread Johan Compagner
ok found and fixed it.johanOn 5/2/06, Johan Compagner <[EMAIL PROTECTED]> wrote: hmm thats strange.where does that weakreference come fromi will check it out.johan On 5/2/06, Rüdiger Schulz < [EMAIL PROTECTED]> wrote:I can confirm this exact same erro on Jboss 3.2.5. --greetings from Berlin,Rüdige

Re: [Wicket-user] Wicket 1.2-rc3 released

2006-05-02 Thread Johan Compagner
hmm thats strange.where does that weakreference come fromi will check it out.johanOn 5/2/06, Rüdiger Schulz < [EMAIL PROTECTED]> wrote:I can confirm this exact same erro on Jboss 3.2.5. --greetings from Berlin,Rüdiger SchulzMaciej Janusz wrote on 02.05.2006 at 17:17:JC>> you have to use the Crypted

Re: [Wicket-user] Wicket 1.2-rc3 released

2006-05-02 Thread Rüdiger Schulz
I can confirm this exact same erro on Jboss 3.2.5. -- greetings from Berlin, Rüdiger Schulz Maciej Janusz wrote on 02.05.2006 at 17:17: JC>> you have to use the CryptedUrlWebRequestCodingStrategy for that now. JC>> I think we need to add those 2 classes back in and make the depricated. > than

Re[2]: [Wicket-user] Wicket 1.2-rc3 released

2006-05-02 Thread Maciej Janusz
JC> you have to use the CryptedUrlWebRequestCodingStrategy for that now. JC> I think we need to add those 2 classes back in and make the depricated. thanks I'll try. JC> where do you see that serialization exception? JC> http://wicket-library.com/wicket-examples/ajax?wicket:bookmarkablePage=:wick

Re: [Wicket-user] Wicket 1.2-rc3 released

2006-05-02 Thread Johan Compagner
you have to use the CryptedUrlWebRequestCodingStrategy for that now.I think we need to add those 2 classes back in and make the depricated.where do you see that serialization exception? http://wicket-library.com/wicket-examples/ajax?wicket:bookmarkablePage=:wicket.examples.ajax.builtin.ClockPagesee

Re: [Wicket-user] Wicket 1.2-rc3 released

2006-05-02 Thread Maciej Janusz
How can have crypted urls I in rc3 release ? Classes WebResponseWithCryptedUrl/WebRequestWithCryptedUrl disappeared. The second issue I had found is AjaxSelfUpdatingTimerBehavior cause an serialization exception (see Ajax clock example) is there any workaround? -- Maciej Janusz -

[Wicket-user] Wicket 1.2-rc3 released

2006-05-01 Thread Martijn Dashorst
All,After some struggles with maven (the changes plugin gave up on me), I have been able to release a new release candidate of Wicket 1.2.You can download the release from the sourceforge servers.     http://sourceforge.net/project/showfiles.php?group_id=119783This release contains all major packa

Re: [Wicket-user] Wicket 1.2-rc2 available for download

2006-04-23 Thread Ingram Chen
Here is FormInput example for zh_TW locale, please see attachement.And as zh_CN do, FormInputApplication.init() should add below code for font:protected void init(){//...//for zh_TW locale (Tranditional Chinese, Taiwan) Font fontTW = new Font("MingLiu", Font.BOLD, 16);DefaultButtonImageResource img

Re: [Wicket-user] Wicket 1.2-rc2 available for download

2006-04-20 Thread Eelco Hillenius
> 3: > FormInput_zh_CN.html is not completely translated to chinese. > and , I don't like the current style it used to present chinese: > 使用地点 > > generally, I write html file in utf8 encoding , then I can directly enter > chinese , and it seems more friendly. Agreed. We didn't do that as CVS only

Re: [Wicket-user] Wicket 1.2-rc2 available for download

2006-04-20 Thread Zenrique Steckelberg
EqualPasswordInputValidator message in Brazilian Portuguese is ok! Just a small thing: all messages have ${input} field with ' around it, but NumberValidator.range message doesnt. Obrigado! :) -- View this message in context: http://www.nabble.com/Wicket-1.2-rc2-available-for-download-t1476856.

Re: [Wicket-user] Wicket 1.2-rc2 available for download

2006-04-20 Thread lu dongping
yes, the original java source file uses 4 chinese letter s for 'reset' and 2 letters for 'save'.because it can not draw them correctly with the wrong font, it just displays 4 squares. On 4/20/06, Johan Compagner <[EMAIL PROTECTED]> wrote: Why do i only see squares (4 in the reset and 2 in the save

Re: [Wicket-user] Wicket 1.2-rc2 available for download

2006-04-20 Thread lu dongping
sorry , I specify the font now, and it can display chinese font correctly .but I think setFont() should return itself to make it more wicket-like .I modified FormInputApplication.java as :Font font = new Font("SimSun", Font.BOLD, 16);    DefaultButtonImageResource imgSave = new Default

Re: [Wicket-user] Wicket 1.2-rc2 available for download

2006-04-20 Thread Johan Compagner
Why do i only see squares (4 in the reset and 2 in the save picture?)johanOn 4/20/06, lu dongping <[EMAIL PROTECTED] > wrote:imagebuttons in chinese locale. On 4/20/06, lu dongping < [EMAIL PROTECTED]> wrote: I checked forminput examples and found following issues:1:I choose chinese locale , then s

Re: [Wicket-user] Wicket 1.2-rc2 available for download

2006-04-20 Thread Johan Compagner
Yes it is a problem with those dates.Because if you change the locale. It does a submit.But the submitted data is just hold as a String as the input was.Then rendered directly to the output again. But then it is in a wrong format.. I don't know how we really can fix this particular case... For date

Re: [Wicket-user] Wicket 1.2-rc2 available for download

2006-04-20 Thread lu dongping
imagebuttons in chinese locale.On 4/20/06, lu dongping <[EMAIL PROTECTED]> wrote: I checked forminput examples and found following issues:1:I choose chinese locale , then submit at once, it will say date format is error!the feedback indicates it need  'aa-n-j' pattern . if I click reset button, it

Re: [Wicket-user] Wicket 1.2-rc2 available for download

2006-04-20 Thread lu dongping
I checked forminput examples and found following issues:1:I choose chinese locale , then submit at once, it will say date format is error!the feedback indicates it need  'aa-n-j' pattern .if I click reset button, it will pass validation, because the date is changed to : 06-4-20. it means the correc

Re: [Wicket-user] Wicket 1.2-rc2 available for download

2006-04-19 Thread Eelco Hillenius
On 4/19/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > show off more? --- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSp

Re: [Wicket-user] Wicket 1.2-rc2 available for download

2006-04-19 Thread lu dongping
I'll check it this night. On 4/20/06, Eelco Hillenius <[EMAIL PROTECTED]> wrote: > Little bit. I've worked in China for a few months (not IT). Kind of > got stuck at the speaking part :) > > Is our forminput example still up-to-date btw? > > Thanks, > > Eelco > > > On 4/19/06, lu dongping <[EMAIL

Re: [Wicket-user] Wicket 1.2-rc2 available for download

2006-04-19 Thread Igor Vaynberg
show offOn 4/19/06, Eelco Hillenius <[EMAIL PROTECTED]> wrote: Little bit. I've worked in China for a few months (not IT). Kind ofgot stuck at the speaking part :)Is our forminput example still up-to-date btw?Thanks,EelcoOn 4/19/06, lu dongping < [EMAIL PROTECTED]> wrote:> haha, you know chinese ?>

Re: [Wicket-user] Wicket 1.2-rc2 available for download

2006-04-19 Thread Eelco Hillenius
Little bit. I've worked in China for a few months (not IT). Kind of got stuck at the speaking part :) Is our forminput example still up-to-date btw? Thanks, Eelco On 4/19/06, lu dongping <[EMAIL PROTECTED]> wrote: > haha, you know chinese ? > > bu xie ! > > outersky > > On 4/20/06, Eelco Hille

Re: [Wicket-user] Wicket 1.2-rc2 available for download

2006-04-19 Thread lu dongping
haha, you know chinese ? bu xie ! outersky On 4/20/06, Eelco Hillenius <[EMAIL PROTECTED]> wrote: > I added it. Xie xie! > > Eelco > > > On 4/19/06, lu dongping <[EMAIL PROTECTED]> wrote: > > Hi, Martijn > > here is the simple chinese version for Application.properties ! > > > > Regards, > > out

Re: [Wicket-user] Wicket 1.2-rc2 available for download

2006-04-19 Thread Eelco Hillenius
I added it. Xie xie! Eelco On 4/19/06, lu dongping <[EMAIL PROTECTED]> wrote: > Hi, Martijn > here is the simple chinese version for Application.properties ! > > Regards, > outersky > > On 4/20/06, Martijn Dashorst <[EMAIL PROTECTED]> wrote: > > All, > > > > To keep our release cycle moving, I h

Re: [Wicket-user] Wicket 1.2-rc2 available for download

2006-04-19 Thread lu dongping
Hi, Martijn here is the simple chinese version for Application.properties ! Regards, outersky On 4/20/06, Martijn Dashorst <[EMAIL PROTECTED]> wrote: > All, > > To keep our release cycle moving, I have created and uploaded a new RC > release of 1.2, with several bugs fixed, and some additional lo

[Wicket-user] Wicket 1.2-rc2 available for download

2006-04-19 Thread Martijn Dashorst
All,To keep our release cycle moving, I have created and uploaded a new RC release of 1.2, with several bugs fixed, and some additional localized messages as defaults. Keep them coming! Please submit your language file using the Java unicode format as used in the finnish and hungarian examples. We

Re: [Wicket-user] Wicket 1.2-rc1 available for download

2006-04-17 Thread Vincent Jenks
Sorry, IE 6.0 on WinXP SP1, line 7 (I believe it said) - I'm not at work now so I can't be entirely sure...I'm pretty sure it was 7. On 4/17/06, Ramnivas Laddad <[EMAIL PROTECTED]> wrote: > Yep, you are absolutely right. > > Thanks for fixing this quickly. > > -Ramnivas > > Eelco Hillenius wro

Re: [Wicket-user] Wicket 1.2-rc1 available for download

2006-04-17 Thread Ramnivas Laddad
Yep, you are absolutely right. Thanks for fixing this quickly. -Ramnivas Eelco Hillenius wrote: That must have been the case where you mount the application on the server root and where you don't use a web app name. Fixed in trunk. Eelco On 4/17/06, Ramnivas Laddad <[EMAIL PROTECTED]>

RE: [Wicket-user] Wicket 1.2-rc1 available for download

2006-04-17 Thread Gustavo Hexsel
er behaves similarly but not exactly like the real WebApplication, in regard to forms. []s Gus -Original Message- From: Gustavo Hexsel Sent: April 17, 2006 5:03 PM To: 'wicket-user@lists.sourceforge.net' Subject: RE: [Wicket-user] Wicket 1.2-rc1 available for download No proble

Re: [Wicket-user] Wicket 1.2-rc1 available for download

2006-04-17 Thread Eelco Hillenius
Could you please provide the exact line of that error, and tell us which browser you are using? Thanks, Eelco On 4/17/06, Vincent Jenks <[EMAIL PROTECTED]> wrote: > I'm getting an "Object expected" javascript error on every page...did > I forget a jar or something? These pages don't have any o

Re: [Wicket-user] Wicket 1.2-rc1 available for download

2006-04-17 Thread Eelco Hillenius
That must have been the case where you mount the application on the server root and where you don't use a web app name. Fixed in trunk. Eelco On 4/17/06, Ramnivas Laddad <[EMAIL PROTECTED]> wrote: > Just switched over to rc1 and I started getting the following exception for > every request. >

RE: [Wicket-user] Wicket 1.2-rc1 available for download

2006-04-17 Thread Gustavo Hexsel
stering with the final page. I'll try to create and submit a simpler test for this one. []s Gus -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Eelco Hillenius Sent: April 17, 2006 4:39 PM To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-

Re: [Wicket-user] Wicket 1.2-rc1 available for download

2006-04-17 Thread Vincent Jenks
I'm getting an "Object expected" javascript error on every page...did I forget a jar or something? These pages don't have any of my own javascript so I'm assuming it has something to do w/ the wicket cookie scripts I'm seeing while viewing the generated source in the browser. Those scripts don't

Re: [Wicket-user] Wicket 1.2-rc1 available for download

2006-04-17 Thread Eelco Hillenius
Hi Gustavo, Sorry for the inconvenience. What kind of test cases are failing? If you use jWebUnit tests, you probably should set HttpUnitOptions.setExceptionsThrownOnScriptError(false); as jWebUnit does not seem not recognize history as a valid javascript property. Could you give more specifics

Re: [Wicket-user] Wicket 1.2-rc1 available for download

2006-04-17 Thread Ramnivas Laddad
Just switched over to rc1 and I started getting the following exception for every request. String index out of range: -1 java.lang.StringIndexOutOfBoundsException: String index out of range: -1     at wicket.util.string.AppendingStringBuffer.charAt(AppendingStringBuffer.java:247)     at wicket

Re: [Wicket-user] Wicket 1.2-rc1 available for download

2006-04-17 Thread Vincent Jenks
uggestion: the licenses for ognl and echo2 are still being > shipped, although the jars were already removed. > > []s Gus > > > > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Martijn Dashorst > Sent: April 17, 2006 2:41 PM > To:

RE: [Wicket-user] Wicket 1.2-rc1 available for download

2006-04-17 Thread Gustavo Hexsel
: [Wicket-user] Wicket 1.2-rc1 available for download The first release candidate of the 1.2 version of Wicket and its subprojects is available for download. You can download the release here: http://sourceforge.net/project/showfiles.php?group_id=119783 Available in this release are: o wicket o

RE: [Wicket-user] Wicket 1.2-rc1 available for download

2006-04-17 Thread Gustavo Hexsel
bject: [Wicket-user] Wicket 1.2-rc1 available for download The first release candidate of the 1.2 version of Wicket and its subprojects is available for download. You can download the release here: http://sourceforge.net/project/showfiles.php?group_id=119783 Available in this release are: o wick

[Wicket-user] Wicket 1.2-rc1 available for download

2006-04-17 Thread Martijn Dashorst
The first release candidate of the 1.2 version of Wicket and its subprojects is available for download.You can download the release here: http://sourceforge.net/project/showfiles.php?group_id=119783Available in this release are: o wicket o wicket-extensions o wicket-examples o wicket-auth-roles o

RE: [Wicket-user] Wicket 1.2 beta3 tag broken?

2006-04-06 Thread Tom van Zummeren
Yeah sorry, I thought nobody posted it yet. I forgot to update my inbox Tom -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Justin Lee Sent: Wednesday, April 05, 2006 3:59 PM To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] Wicket 1.2

Re: [Wicket-user] wicket 1.2 beta 2 DropDownChoice default display value.. "Please Choose one"

2006-04-06 Thread Johan Compagner
later on. -regards Nino-Oprindelig meddelelse-Fra: [EMAIL PROTECTED] på vegne af Johan CompagnerSendt: on 05-04-2006 16:47 Til: wicket-user@lists.sourceforge.netCc:Emne: Re: [Wicket-user] wicket 1.2 beta 2 DropDownChoice default display

SV: [Wicket-user] wicket 1.2 beta 2 DropDownChoice default display value.. "Please Choose one"

2006-04-06 Thread Nino Wael
vegne af Nino Wael Sendt: to 06-04-2006 10:02 Til: wicket-user@lists.sourceforge.net Cc: Emne: SV: [Wicket-user] wicket 1.2 beta 2 DropDownChoice default display value.. "Please Choose one" Hmm strange, Im pretty much doin

Re: [Wicket-user] wicket 1.2 beta 2 DropDownChoice default display value.. "Please Choose one"

2006-04-05 Thread Johan Compagner
ead it uses the first object from the model.   So instead of displaying whats held in dropDownInitial it displays the object from the model.   -regards Nino   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Johan Compagner Sent: 5. april 2006 13:02 To: wicket-u

Re: [Wicket-user] Wicket 1.2 beta3 tag broken?

2006-04-05 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE- Hash: RIPEMD160 It was already said this was fixed in svn. Tom van Zummeren wrote: > I use quite a few tags in my application. Since wicket 1.2 > beta3 this tag doesn't work anymore, Wicket acts like he has never heard of > this tag before. > > I looked a bi

[Wicket-user] Wicket 1.2 beta3 tag broken?

2006-04-05 Thread Tom van Zummeren
I use quite a few tags in my application. Since wicket 1.2 beta3 this tag doesn't work anymore, Wicket acts like he has never heard of this tag before. I looked a bit into it and found out the tag wasn't registered as a known tag. So when I added this to my subclass of WebApplication: WicketTa

RE: [Wicket-user] wicket 1.2 beta 2 DropDownChoice default display value.. "Please Choose one"

2006-04-05 Thread Nino Wael
Compagner Sent: 5. april 2006 13:02 To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] wicket 1.2 beta 2 DropDownChoice default display value.. "Please Choose one"   what doesn't work exactly? Because looking at the code it should work fine. The getDefaultChoice(sele

Re: [Wicket-user] wicket 1.2 beta 2 DropDownChoice default display value.. "Please Choose one"

2006-04-05 Thread Johan Compagner
what doesn't work exactly?Because looking at the code it should work fine. The getDefaultChoice(selected) is called and appended to the output.johanP.S. Now i think about it getDefaultChoice is a perfect candidate for returning a CharSequence instead of a string. So that you don't have to call toSt

[Wicket-user] wicket 1.2 beta 2 DropDownChoice default display value.. "Please Choose one"

2006-04-05 Thread Nino Wael
Hi   I looked at the dialog between Igor and Stefan, thought what a nice way to select the default value with the property model. However and then remembered why it did not do it that way, I wanted to replace the Choose One text with something else, well at least in some cases. Im replaci

Re: [Wicket-user] Wicket 1.2-beta3 is available

2006-04-03 Thread Eelco Hillenius
AIL PROTECTED] On Behalf > Of Martijn Dashorst > Sent: Sunday, April 02, 2006 4:55 PM > To: Wicket User; Wicket Developers > Subject: [Wicket-user] Wicket 1.2-beta3 is available > > > > All, > > I have created and uploaded the third beta release of Wicket 1.2. We h

RE: [Wicket-user] Wicket 1.2-beta3 is available

2006-04-03 Thread Frank Silbermann
-user] Wicket 1.2-beta3 is available   My application uses DataTable’s  whose column headers come from ResultSetMetaData and whose data comes from ResultSet.  With the new .jars, I’m getting the column headers, but not the table contents.  I clicked something and got a “no such method” exception

RE: [Wicket-user] Wicket 1.2-beta3 is available

2006-04-03 Thread Frank Silbermann
extensions been re-factored since 1.2B2?   -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Martijn Dashorst Sent: Sunday, April 02, 2006 4:55 PM To: Wicket User; Wicket Developers Subject: [Wicket-user] Wicket 1.2-beta3 is available   All, I have created and

  1   2   >