Re: [Wicket-user] invalid quotes escaping in event handlers scripts

2007-02-23 Thread Andrew Klochkov
I updated wicket and now it generates quote; instead of \ - it works. Looks like it was fixed recently? Igor Vaynberg wrote: how do you escape quotes in javascript then if not \ ? -igor On 2/22/07, *Andrew Klochkov* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: BTW it's my

[Wicket-user] Maven repository for wicket-dojo and wicket-scriptaculous?

2007-02-23 Thread Gohan
Hi, Does anybody know of a maven repo for the wicket-stuff components such as wicket-dojo and wicket-scriptaculous? -- View this message in context: http://www.nabble.com/Maven-repository-for-wicket-dojo-and-wicket-scriptaculous--tf3277642.html#a9115285 Sent from the Wicket - User mailing

Re: [Wicket-user] Maven repository for wicket-dojo and wicket-scriptaculous?

2007-02-23 Thread Igor Vaynberg
if project/wicket-stuff maintainers add their projects to our bamboo instance the snapshots will be housed at wicketstuff.org/maven/repository -igor On 2/23/07, Gohan [EMAIL PROTECTED] wrote: Hi, Does anybody know of a maven repo for the wicket-stuff components such as wicket-dojo and

Re: [Wicket-user] choosing a wicket version

2007-02-23 Thread Johan Compagner
if your deadline is still 6+ months away, you could start using 2.0 (if you can use java5) if it is shorter you should use 1.3 (at least that is how i see it currently) Why wouldn't a polling ajax behavior work? Do you really want to have an constant open connection somehow? (also a thing the

Re: [Wicket-user] invalid quotes escaping in event handlers scripts

2007-02-23 Thread Johan Compagner
some weeks ago i think.. you should update more often ;) johan On 2/23/07, Andrew Klochkov [EMAIL PROTECTED] wrote: I updated wicket and now it generates quote; instead of \ - it works. Looks like it was fixed recently? Igor Vaynberg wrote: how do you escape quotes in javascript then if

Re: [Wicket-user] Testing and sessions

2007-02-23 Thread Jean-Baptiste Quenot
* Srdjan Marinovic: Anyways, Wicket's support for unit testing is really good and I'm lovin it, it is a gem. Glad to hear that. And in the latest Wicket 1.x, you've got the WicketTester refactoring that allows you to test your custom WebApplication directly. Enjoy! --

[Wicket-user] Wicket-Javaee Release

2007-02-23 Thread Ayodeji Aladejebi
Is the present release only compatible with Wicket2? I am using Wicket 1.2.4. Can I use the present Wicket-javaee release with wicket 1.2.x? - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay

Re: [Wicket-user] choosing a wicket version

2007-02-23 Thread Xavier Hanin
Hi Johan, Thanks a lot for your answer! On 2/23/07, Johan Compagner [EMAIL PROTECTED] wrote: if your deadline is still 6+ months away, you could start using 2.0 (if you can use java5) if it is shorter you should use 1.3 (at least that is how i see it currently) I don't have a strong

Re: [Wicket-user] Wicket-Javaee Release

2007-02-23 Thread Filippo Diotalevi
On 2/23/07, Ayodeji Aladejebi [EMAIL PROTECTED] wrote: Is the present release only compatible with Wicket2? I am using Wicket 1.2.4. Can I use the present Wicket-javaee release with wicket 1.2.x? Hi, the current release of wicket-javaee (1.0) is compatible and tested with Wicket 1.2.4 and

Re: [Wicket-user] Testing Wicket with JMeter

2007-02-23 Thread Nino Wael
Hmm actually, I've joined the Jmeter users mailing list. But traffic is very low on this one, and I haven't got any replies to my mails, although trying to get people to use the list by replying to their mails but I guess it will take some time. So im not quite sure on howto get in contact with

Re: [Wicket-user] choosing a wicket version

2007-02-23 Thread Johan Compagner
If you want a constant connection to the server then do choose the right server (that uses NIO and so on) because the current servlet way of thread per request is really not scalable then.. Do you have any recommendation about the right server? i think you can look at Jetty or Glashfish.

[Wicket-user] Deprecation warning

2007-02-23 Thread Konstantin
Why do I get: D:\Java\IdeaProjects\...\AjaxMouseDownLinkBehavior.java Warning:Warning:line (17)[deprecation] getImplementationId() in wicket.behavior.AbstractAjaxBehavior has been deprecated on this: public class AjaxMouseDownLinkBehavior extends AjaxEventBehavior { Component owner;

Re: [Wicket-user] choosing a wicket version

2007-02-23 Thread Xavier Hanin
On 2/23/07, Johan Compagner [EMAIL PROTECTED] wrote: If you want a constant connection to the server then do choose the right server (that uses NIO and so on) because the current servlet way of thread per request is really not scalable then.. Do you have any recommendation about the

[Wicket-user] DataTable (date format)

2007-02-23 Thread Kingen Star
Hi. Is there an easy way to format the date that the DataTable is displaying? - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT

[Wicket-user] I propose a slight change to setObject exception message

2007-02-23 Thread ChuckDeal
In my specific case it is Wicket 1.3, AbstractDetachableModel, setObject(); but I image it would apply in other cases as well. Does anyone else see any value to making this small change to the exception message? Currently: throw new WicketRuntimeException(unable to set object + object + ,

[Wicket-user] Wicket Ajax Debug: Channel busy - postponing ...

2007-02-23 Thread Konstantin
I get: INFO: Initiating Ajax GET request on ... INFO: Invoking pre-call handler(s) ... INFO: Channel busy - postponing ... What does it mean ? I create a modal progress control in pre-call handler and because I do not get success nor failure answers (in which I turn off progress control) it

[Wicket-user] Pure JavaScript calls from Links

2007-02-23 Thread Will Morton
I am having some issues getting my Wicket application to work. Any assistance would be much appreciated. I have a bunch of pre-defined JavaScript functions that I am including in headers. There are some links on my site that, when clicked, should call one of these pre-defined JS functions.

[Wicket-user] Ajax form validation error messages

2007-02-23 Thread Jason Roelofs
The list archives at sourceforge are giving me a 500 error, so I don't know if this has been answered. What's the best way to push error messages out to the page via Ajax? I have a small form (text field, submit, cancel). I want to make sure that the field is not blank. Thanks Jason

Re: [Wicket-user] DataTable (date format)

2007-02-23 Thread Igor Vaynberg
class datepropcol extends propertycolumn { imodel createlabelmodel(imodel rowmodel) { final imodel prop=super.createlabelmodel(rowmodel); return new abstractreadonlymodel() { object getobject() { Date date=(Date)prop.getObject(); String str=formatdate...

Re: [Wicket-user] I propose a slight change to setObject exception message

2007-02-23 Thread Igor Vaynberg
easiest way is to create a jira issue -igor On 2/23/07, ChuckDeal [EMAIL PROTECTED] wrote: In my specific case it is Wicket 1.3, AbstractDetachableModel, setObject(); but I image it would apply in other cases as well. Does anyone else see any value to making this small change to the

Re: [Wicket-user] Pure JavaScript calls from Links

2007-02-23 Thread Igor Vaynberg
at the end of javascript you have to return false; this will prevent the href from executing -igor On 2/23/07, Will Morton [EMAIL PROTECTED] wrote: I am having some issues getting my Wicket application to work. Any assistance would be much appreciated. I have a bunch of pre-defined

Re: [Wicket-user] Pure JavaScript calls from Links

2007-02-23 Thread Erik van Oosten
Attach a simple WebMarkupComponent to your a. Then add a SimpleAttributeBehavior(onclick, foo();) to the component. Regards, Erik. Will Morton wrote: I am having some issues getting my Wicket application to work. Any assistance would be much appreciated. I have a bunch of pre-defined

Re: [Wicket-user] Ajax form validation error messages

2007-02-23 Thread Igor Vaynberg
there is a form examples in wicket-examples wicket-stuff.org/wicket13 go to ajax examples/form -igor On 2/23/07, Jason Roelofs [EMAIL PROTECTED] wrote: The list archives at sourceforge are giving me a 500 error, so I don't know if this has been answered. What's the best way to push error

Re: [Wicket-user] Pure JavaScript calls from Links

2007-02-23 Thread Erik van Oosten
Sorry, it is more something like WebMarkupContainer, not WebMarkupComponent. Erik. Erik van Oosten wrote: Attach a simple WebMarkupComponent to your a. Then add a SimpleAttributeBehavior(onclick, foo();) to the component. Regards, Erik. Will Morton wrote: I am having some

Re: [Wicket-user] Wicket Ajax Debug: Channel busy - postponing ...

2007-02-23 Thread Igor Vaynberg
that means you are sending multiple requests over the same ajax channel but at a rate higher then those requests are processed on the server side so they get queued -igor On 2/23/07, Konstantin [EMAIL PROTECTED] wrote: I get: INFO: Initiating Ajax GET request on ... INFO: Invoking pre-call

Re: [Wicket-user] Ajax form validation error messages

2007-02-23 Thread Eelco Hillenius
there is a form examples in wicket-examples wicket-stuff.org/wicket13 http://wicketstuff.org/wicket13/ even Eelco - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll

[Wicket-user] Internal error with wizard example

2007-02-23 Thread Xavier Hanin
Hi, I've just noticed that the wizard examples on wicketstuff.org/wicket13display an Internal error page when you hit the previous button. Is this a known bug? Xavier - Take Surveys. Earn Cash. Influence the Future of IT

[Wicket-user] setPersistent on Form in 1.3 not there anymore?

2007-02-23 Thread Peter Thomas
Hi, I'm trying to get remember me functionality on a login form working. The Form#setPersistent() method is see in the wicket-examples Signin2 does not seem to be available in Wicket 1.3 How do I do this, also is there any documentation on implementing remember me? And how do I delete the

Re: [Wicket-user] Internal error with wizard example

2007-02-23 Thread Igor Vaynberg
eelco fix it! -igor On 2/23/07, Xavier Hanin [EMAIL PROTECTED] wrote: Hi, I've just noticed that the wizard examples on wicketstuff.org/wicket13display an Internal error page when you hit the previous button. Is this a known bug? Xavier

Re: [Wicket-user] setPersistent on Form in 1.3 not there anymore?

2007-02-23 Thread Xavier Hanin
On 2/23/07, Peter Thomas [EMAIL PROTECTED] wrote: Hi, I'm trying to get remember me functionality on a login form working. The Form#setPersistent() method is see in the wicket-examples Signin2 does not seem to be available in Wicket 1.3 How do I do this, also is there any documentation on

Re: [Wicket-user] Internal error with wizard example

2007-02-23 Thread Eelco Hillenius
What browser and how do you do that? Eelco On 2/23/07, Xavier Hanin [EMAIL PROTECTED] wrote: Hi, I've just noticed that the wizard examples on wicketstuff.org/wicket13 display an Internal error page when you hit the previous button. Is this a known bug? Xavier

Re: [Wicket-user] setPersistent on Form in 1.3 not there anymore?

2007-02-23 Thread Peter Thomas
On 2/23/07, Xavier Hanin [EMAIL PROTECTED] wrote: On 2/23/07, Peter Thomas [EMAIL PROTECTED] wrote: Hi, I'm trying to get remember me functionality on a login form working. The Form#setPersistent() method is see in the wicket-examples Signin2 does not seem to be available in Wicket 1.3

Re: [Wicket-user] Internal error with wizard example

2007-02-23 Thread Eelco Hillenius
Interestingly, I also just found out that Igor's change for the default button now results in a button being drawn in the left corner. I'm sure it works with IE though. Eelco On 2/23/07, Eelco Hillenius [EMAIL PROTECTED] wrote: What browser and how do you do that? Eelco On 2/23/07, Xavier

Re: [Wicket-user] Internal error with wizard example

2007-02-23 Thread Xavier Hanin
On 2/23/07, Eelco Hillenius [EMAIL PROTECTED] wrote: What browser and how do you do that? Browser: Opera 9 OS: Windows XP SP2 Scenario: go to abracabra example: http://wicketstuff.org/wicket13/wizard/ follow the first link:

Re: [Wicket-user] Internal error with wizard example

2007-02-23 Thread Igor Vaynberg
which change was that? -igor On 2/23/07, Eelco Hillenius [EMAIL PROTECTED] wrote: Interestingly, I also just found out that Igor's change for the default button now results in a button being drawn in the left corner. I'm sure it works with IE though. Eelco On 2/23/07, Eelco Hillenius

Re: [Wicket-user] Internal error with wizard example

2007-02-23 Thread Eelco Hillenius
Igor, you said setting it invisible didn't work for IE, right? Looks like we have to decide what to output based on the browser then :( Eelco On 2/23/07, Eelco Hillenius [EMAIL PROTECTED] wrote: Interestingly, I also just found out that Igor's change for the default button now results in a

Re: [Wicket-user] Internal error with wizard example

2007-02-23 Thread Eelco Hillenius
Xavier, could you please open up a JIRA issue for that? Thanks, Eelco On 2/23/07, Xavier Hanin [EMAIL PROTECTED] wrote: On 2/23/07, Eelco Hillenius [EMAIL PROTECTED] wrote: What browser and how do you do that? Browser: Opera 9 OS: Windows XP SP2 Scenario: go to abracabra example:

Re: [Wicket-user] Internal error with wizard example

2007-02-23 Thread Igor Vaynberg
naah, you dont need the default button :) see how i do it in teachscape, i use some css trickery to make add the buttons in the proper order in html (finish, next, back, cancel) but reorder them in the opposite order using css doesnt fix the problem you are describing though, im going to check

Re: [Wicket-user] Internal error with wizard example

2007-02-23 Thread Xavier Hanin
On 2/23/07, Xavier Hanin [EMAIL PROTECTED] wrote: On 2/23/07, Eelco Hillenius [EMAIL PROTECTED] wrote: What browser and how do you do that? Browser: Opera 9 Same problem with Firefox 2.0.0.1 and IE 7.0 OS: Windows XP SP2 Scenario: go to abracabra example:

Re: [Wicket-user] Wicket Ajax Debug: Channel busy - postponing ...

2007-02-23 Thread Konstantin
Ok with that. But I figured out another bug or a feature. When I navigate through pages of my site I sometimes get page with wicket-ajax.js in header and sometimes without ... so my ajax is broken on that page. I suspect that it began to start happening when I've created navigation with

Re: [Wicket-user] Wicket Ajax Debug: Channel busy - postponing ...

2007-02-23 Thread Igor Vaynberg
you are using 1.2.5 or lower? there is an open bug for that already -igor On 2/23/07, Konstantin [EMAIL PROTECTED] wrote: Ok with that. But I figured out another bug or a feature. When I navigate through pages of my site I sometimes get page with wicket-ajax.js in header and sometimes

Re: [Wicket-user] Internal error with wizard example

2007-02-23 Thread Xavier Hanin
On 2/23/07, Eelco Hillenius [EMAIL PROTECTED] wrote: Xavier, could you please open up a JIRA issue for that? Thanks, Done: https://issues.apache.org/jira/browse/WICKET-317 Xavier Eelco On 2/23/07, Xavier Hanin [EMAIL PROTECTED] wrote: On 2/23/07, Eelco Hillenius [EMAIL PROTECTED] wrote:

Re: [Wicket-user] Wicket Ajax Debug: Channel busy - postponing ...

2007-02-23 Thread Konstantin
1.2.5 In which version ? igor.vaynberg wrote: you are using 1.2.5 or lower? there is an open bug for that already -igor On 2/23/07, Konstantin [EMAIL PROTECTED] wrote: Ok with that. But I figured out another bug or a feature. When I navigate through pages of my site I sometimes

Re: [Wicket-user] setPersistent on Form in 1.3 not there anymore?

2007-02-23 Thread Xavier Hanin
On 2/23/07, Peter Thomas [EMAIL PROTECTED] wrote: On 2/23/07, Xavier Hanin [EMAIL PROTECTED] wrote: On 2/23/07, Peter Thomas [EMAIL PROTECTED] wrote: Hi, I'm trying to get remember me functionality on a login form working. The Form#setPersistent() method is see in the

Re: [Wicket-user] setPersistent on Form in 1.3 not there anymore?

2007-02-23 Thread Xavier Hanin
On 2/23/07, Peter Thomas [EMAIL PROTECTED] wrote: On 2/23/07, Xavier Hanin [EMAIL PROTECTED] wrote: On 2/23/07, Peter Thomas [EMAIL PROTECTED] wrote: Hi, I'm trying to get remember me functionality on a login form working. The Form#setPersistent() method is see in the

Re: [Wicket-user] Internal error with wizard example

2007-02-23 Thread Eelco Hillenius
Done: https://issues.apache.org/jira/browse/WICKET-317 Thanks, Eelco - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT

Re: [Wicket-user] Wicket Ajax Debug: Channel busy - postponing ...

2007-02-23 Thread Konstantin
How can I help you fix it ? igor.vaynberg wrote: yep, there is a bug that affects 1.2.5 and 1.2.4 i believe -igor On 2/23/07, Konstantin [EMAIL PROTECTED] wrote: 1.2.5 In which version ? igor.vaynberg wrote: you are using 1.2.5 or lower? there is an open bug for that

Re: [Wicket-user] Wicket Ajax Debug: Channel busy - postponing ...

2007-02-23 Thread Igor Vaynberg
create a patch that fixes it? :) -igor On 2/23/07, Konstantin [EMAIL PROTECTED] wrote: How can I help you fix it ? igor.vaynberg wrote: yep, there is a bug that affects 1.2.5 and 1.2.4 i believe -igor On 2/23/07, Konstantin [EMAIL PROTECTED] wrote: 1.2.5 In which version ?

Re: [Wicket-user] Wicket Ajax Debug: Channel busy - postponing ...

2007-02-23 Thread Konstantin
That easy :-) Ok, will try to debug a little. igor.vaynberg wrote: create a patch that fixes it? :) -igor On 2/23/07, Konstantin [EMAIL PROTECTED] wrote: How can I help you fix it ? igor.vaynberg wrote: yep, there is a bug that affects 1.2.5 and 1.2.4 i believe -igor

Re: [Wicket-user] setPersistent on Form in 1.3 not there anymore?

2007-02-23 Thread Xavier Hanin
On 2/23/07, Peter Thomas [EMAIL PROTECTED] wrote: Hi, I'm trying to get remember me functionality on a login form working. The Form#setPersistent() method is see in the wicket-examples Signin2 does not seem to be available in Wicket 1.3 How do I do this, also is there any documentation on

[Wicket-user] No java source in wicket example

2007-02-23 Thread Marc-Andre Houle
Just grab this while checking something in example at http://wicketstuff.org/wicket13/ . When clicking on source file, the pop-up display but you only have html an properties. There is no java class file. Thought it was worth letting the administrator know! :) Marc

Re: [Wicket-user] No java source in wicket example

2007-02-23 Thread Eelco Hillenius
That's worth a JIRA report so Martijn can fix it :) Eelco On 2/23/07, Marc-Andre Houle [EMAIL PROTECTED] wrote: Just grab this while checking something in example at http://wicketstuff.org/wicket13/ . When clicking on source file, the pop-up display but you only have html an properties.

Re: [Wicket-user] No java source in wicket example

2007-02-23 Thread Marc-Andre Houle
https://issues.apache.org/jira/browse/WICKET-319 On 2/23/07, Eelco Hillenius [EMAIL PROTECTED] wrote: That's worth a JIRA report so Martijn can fix it :) Eelco On 2/23/07, Marc-Andre Houle [EMAIL PROTECTED] wrote: Just grab this while checking something in example at

Re: [Wicket-user] WicketTester and DropDownChoice.onSelectionChanged()

2007-02-23 Thread Jean-Baptiste Quenot
* Johan Compagner: something like this: setupRequestAndResponse(); getServletRequest().setRequestToComponent(DDC); processRequestCycle(); Since a few seconds in 1.3 you can also do directly: tester.executeListener(DDC); -- Jean-Baptiste Quenot aka John Banana

[Wicket-user] PasswordTextField.setResetPassword

2007-02-23 Thread RĂ¼diger Schulz
Hello everybody, Using Wicket 1.2.5, I have a sign-up form with a password field like this: PasswordTextField passwordField = new PasswordTextField(password); passwordField.setRequired(true); passwordField.add(StringValidator.lengthBetween(5, 32)); I observe a rather odd behavior: 1) enter 5

Re: [Wicket-user] PasswordTextField.setResetPassword

2007-02-23 Thread Johan Compagner
please make a jira issue On 2/24/07, RĂ¼diger Schulz [EMAIL PROTECTED] wrote: Hello everybody, Using Wicket 1.2.5, I have a sign-up form with a password field like this: PasswordTextField passwordField = new PasswordTextField(password); passwordField.setRequired(true);

Re: [Wicket-user] Wicket-user Digest, Vol 9, Issue 223

2007-02-23 Thread ketan gote
hello freinds how can i handle runtimeexception or UnexpectedException in wicket and define user define page or override the wicket UnexpectedException page - Take Surveys. Earn Cash. Influence the Future of IT Join

Re: [Wicket-user] Please help me understand Wicket

2007-02-23 Thread Ryan Holmes
Make sure to always check the JavaDocs -- they're pretty thorough and often include examples. For instance, the JavaDoc for Link includes the snippet that Igor gave you. -Ryan On Feb 22, 2007, at 6:57 AM, Jason Roelofs wrote: Wicketers (wicketeers?), I'm a newcomer to the Wicket

[Wicket-user] twice

2007-02-23 Thread Biju Nguyen
Infront line number hurry youre checkout theslowest. Attracts food spills dark. Except end user vending machines contain. Would feel insulted notice subtle. Topics like whether, can legally, march elephants. Special case though provides further software bugs impossible. Same state no unless. An