[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 immediate inference, from proved something naturally follows lawif? Edge 
therack dollar, bills reject them.
Like whether can legally march.
Your snack fall sense irony humorfaux. Esoteric topics like whether can.
Each, onewith potential damage matter resources never.
Unless theyre married however thereis one law that, is.


crashIf crashed.gif
Description: GIF image
-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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 framework and I have to say I'm  
> impressed with what this library does. I'm an extensive Rails user,  
> so when I was given a web project that had to be in Java, I spent a  
> few days looking and trying out different frameworks, until I  
> landed on Wicket. However, now I'm nothing but frustrated as I just  
> don't understand how to use this framework. I've searched the  
> documentation, I've tried searching the list (not sure what to  
> search for, honestly), so now I'm posting here.
>
> I'm stuck on how to deal with object models in pages. I picked up  
> Databinder for Hibernate mappings, which is working quite well, but  
> now I cannot for the life of me figure out this very simple operation:
>
> I have a list of available objects displayed on my page as Links.  
> When I click on these links, how are you supposed to know what you  
> clicked on and load up that full object for further use? The  
> relevant code I've got going so far (in a WebMarkupContainer,  
> private class inside of IndexPage):
>
>  IModel staticChainListModel = new HibernateListModel 
> (StaticRuleChain.class, new ICriteriaBuilder() {
> public void build(Criteria criteria) {
>   criteria.addOrder(Order.asc("name"));
> }
>   });
>
>   add(new PropertyListView("staticRuleChain", staticChainListModel) {
> @Override
> protected void populateItem(final ListItem item) {
>   item.add(new Link("editLink") {
> @Override
> public void onClick() {
>   System.out.println("Setting model to something  
> static...");
>
>   // What goes here? I want to use the model I clicked on!
> }
>   }.add(new Label("name")));
> }
>   });
>
> And in the constructor of IndexPage (currentRuleChainName is just a  
> field to show that I actually have the object I'm looking for. I  
> only ever see "Good Day my Friend"):
>
> // Display rule chain
> if (getModelObject() == null) {
>   //this.setModelObject(new HibernateObjectModel 
> (StaticRuleChain.class));
>   add(new Label("currentRuleChainName", "Good Day my Friend"));
> } else {
>   add(new Label("currentRuleChainName", new PropertyModel 
> (getModelObject(), "name")));
> }
>
> For all I've searched, I've found only tidbits and tips on certain  
> parts of the Wicket framework. I've tried looking through the  
> examples, but none of them seem to do what I want, or are doing  
> them in a different manner (mostly using Form, which I am not  
> using). Are there any documents around that describe the Why and  
> How of Wicket vs just the What?
>
> Thanks for your help, let me know if you need more information.
>
> Jason
> -- 
> ---
> 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 & business topics through brief surveys-and earn cash
> http://www.techsay.com/default.php? 
> page=join.php&p=sourceforge&CID=DEVDEV 
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user


-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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 SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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);
passwordField.add(StringValidator.lengthBetween(5, 32));

I observe a rather odd behavior:

1) enter 5 characters, submit. Other fields in the form have errors, so
the form is redisplayed.

2) delete a character, submit. Error is displayed, but the value of the
field is what I entered in step 1.

This is especially irritating if you do the form validation via Ajax
after onblur, so it would be nice if this could be changed somehow.

I already asked a similar question last April, but I'm not sure what the
final decision has been on this:


http://www.nabble.com/PasswordTextField.setResetPassword-tf1399513.html#a3764720

If desired, I could also post a JIRA on this.

thanks,

Rüdiger

-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[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 characters, submit. Other fields in the form have errors, so
the form is redisplayed.

2) delete a character, submit. Error is displayed, but the value of the
field is what I entered in step 1.

This is especially irritating if you do the form validation via Ajax
after onblur, so it would be nice if this could be changed somehow.

I already asked a similar question last April, but I'm not sure what the
final decision has been on this:

http://www.nabble.com/PasswordTextField.setResetPassword-tf1399513.html#a3764720

If desired, I could also post a JIRA on this.

thanks,

Rüdiger

-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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   Qwerty
http://caraldi.com/jbq/

-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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
> 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
>
>
-
> 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 & business topics through brief surveys-and earn cash
>
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>
>

-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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.  There is no java class file.
>
> Thought it was worth letting the administrator know! :)
> Marc
>
> -
> 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 & business topics through brief surveys-and earn cash
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>
>

-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[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
-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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 implementing
"remember me"?



According to the SigninPanel code in the examples, it seems that you have to
use setPersistent on the fields, not on the form.

And how do I delete the cookies created, if any?


According to the same example, I would say you have to call
getPage().removePersistedFormData(). But I haven't tested yet.

- Xavier

Thanks,


Peter.

-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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
>> >
>> >
>> > 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 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
>> >> >> without ... so my ajax is broken on that page. I suspect that it
>> began
>> >> to
>> >> >> start happening when I've created navigation with OnMouseDown
>> events
>> >> with
>> >> >> window.location.href='+urlFor(mySuperPage.class, new
>> >> PageProperties())'
>> >> >> ...
>> >> >> maybe it is somehow done in a wrong way ?
>> >> >>
>> >> >>
>> >> >>
>> >> >> igor.vaynberg wrote:
>> >> >> >
>> >> >> > 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 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 loops forever ...
>> >> >> >> Can you tell me what is wrong ?
>> >> >> >>
>> >> >> >> Wicket 1.2.5, Mozilla FireFox 2.0
>> >> >> >> --
>> >> >> >> View this message in context:
>> >> >> >>
>> >> >>
>> >>
>> http://www.nabble.com/Wicket-Ajax-Debug%3A-Channel-busy---postponing-...-tf3279219.html#a9120006
>> >> >> >> Sent from the Wicket - User mailing list archive at Nabble.com.
>> >> >> >>
>> >> >> >>
>> >> >> >>
>> >> >>
>> >>
>> -
>> >> >> >> 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 & business topics through brief surveys-and earn
>> >> cash
>> >> >> >>
>> >> >>
>> >>
>> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
>> >> >> >> ___
>> >> >> >> Wicket-user mailing list
>> >> >> >> Wicket-user@lists.sourceforge.net
>> >> >> >> https://lists.sourceforge.net/lists/listinfo/wicket-user
>> >> >> >>
>> >> >> >
>> >> >> >
>> >> >>
>> >>
>> -
>> >> >> > 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 & business topics through brief surveys-and earn
>> cash
>> >> >> >
>> >> >>
>> >>
>> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
>> >> >> > ___
>> >> >> > Wicket-user mailing list
>> >> >> > Wicket-user@lists.sourceforge.net
>> >> >> > https://lists.sourceforge.net/lists/listinfo/wicket-user
>> >> >> >
>> >> >> >
>> >> >>
>> >> >> --
>> >> >> View this message in context:
>> >> >>
>> >>
>> http://www.nabble.com/Wicket-Ajax-Debug%3A-Channel-busy---postponing-...-tf3279219.html#a9124357
>> >> >> Sent from the Wicket - User mailing list archive at Nabble.com.
>> >> >>
>> >> >>
>> >> >>
>> >>
>> -
>> >> >> 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 & business topics through brief surveys-and earn
>> cash
>> >> >>
>> >>
>> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
>> >> >> ___
>> >> >> Wicket-user mailing list
>> >> >> Wicket-user@lists.sourceforge.net
>> >> >> https://lists.sourceforge.net/lists/listinfo/wicket-user
>> >> >>
>> >> >
>> >> >
>> >>
>> -
>> >> > Take Surveys. Earn Cash. Influence the Future of IT
>> >> > Join SourceForge.net's Techsay panel and you'

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 ?
>>
>>
>> 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 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 OnMouseDown events
>> with
>> >> window.location.href='+urlFor(mySuperPage.class, new
>> PageProperties())'
>> >> ...
>> >> maybe it is somehow done in a wrong way ?
>> >>
>> >>
>> >>
>> >> igor.vaynberg wrote:
>> >> >
>> >> > 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 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 loops forever ...
>> >> >> Can you tell me what is wrong ?
>> >> >>
>> >> >> Wicket 1.2.5, Mozilla FireFox 2.0
>> >> >> --
>> >> >> View this message in context:
>> >> >>
>> >>
>>
http://www.nabble.com/Wicket-Ajax-Debug%3A-Channel-busy---postponing-...-tf3279219.html#a9120006
>> >> >> Sent from the Wicket - User mailing list archive at Nabble.com.
>> >> >>
>> >> >>
>> >> >>
>> >>
>>
-
>> >> >> 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 & business topics through brief surveys-and earn
>> cash
>> >> >>
>> >>
>>
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
>> >> >> ___
>> >> >> Wicket-user mailing list
>> >> >> Wicket-user@lists.sourceforge.net
>> >> >> https://lists.sourceforge.net/lists/listinfo/wicket-user
>> >> >>
>> >> >
>> >> >
>> >>
>>
-
>> >> > 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 & business topics through brief surveys-and earn
cash
>> >> >
>> >>
>>
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
>> >> > ___
>> >> > Wicket-user mailing list
>> >> > Wicket-user@lists.sourceforge.net
>> >> > https://lists.sourceforge.net/lists/listinfo/wicket-user
>> >> >
>> >> >
>> >>
>> >> --
>> >> View this message in context:
>> >>
>>
http://www.nabble.com/Wicket-Ajax-Debug%3A-Channel-busy---postponing-...-tf3279219.html#a9124357
>> >> Sent from the Wicket - User mailing list archive at Nabble.com.
>> >>
>> >>
>> >>
>>
-
>> >> 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 & business topics through brief surveys-and earn cash
>> >>
>>
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
>> >> ___
>> >> Wicket-user mailing list
>> >> Wicket-user@lists.sourceforge.net
>> >> https://lists.sourceforge.net/lists/listinfo/wicket-user
>> >>
>> >
>> >
>>
-
>> > 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 & business topics through brief surveys-and earn cash
>> >
>>
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
>> > ___
>> > Wicket-user mailing list
>> > Wicket-user@lists.sourceforge.net
>> > https://lists.sourceforge.net/lists/listinfo/wicket-user
>> >
>> >
>>
>> --
>> View this message in context:
>>
http://www.nabble.com/Wicket-Ajax-Debug%3A-Channel-busy---postponing-...-tf3279219.html#a9124437
>> Sent from the Wicket - User maili

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 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
>> >> without ... so my ajax is broken on that page. I suspect that it began
>> to
>> >> start happening when I've created navigation with OnMouseDown events
>> with
>> >> window.location.href='+urlFor(mySuperPage.class, new
>> PageProperties())'
>> >> ...
>> >> maybe it is somehow done in a wrong way ?
>> >>
>> >>
>> >>
>> >> igor.vaynberg wrote:
>> >> >
>> >> > 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 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 loops forever ...
>> >> >> Can you tell me what is wrong ?
>> >> >>
>> >> >> Wicket 1.2.5, Mozilla FireFox 2.0
>> >> >> --
>> >> >> View this message in context:
>> >> >>
>> >>
>> http://www.nabble.com/Wicket-Ajax-Debug%3A-Channel-busy---postponing-...-tf3279219.html#a9120006
>> >> >> Sent from the Wicket - User mailing list archive at Nabble.com.
>> >> >>
>> >> >>
>> >> >>
>> >>
>> -
>> >> >> 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 & business topics through brief surveys-and earn
>> cash
>> >> >>
>> >>
>> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
>> >> >> ___
>> >> >> Wicket-user mailing list
>> >> >> Wicket-user@lists.sourceforge.net
>> >> >> https://lists.sourceforge.net/lists/listinfo/wicket-user
>> >> >>
>> >> >
>> >> >
>> >>
>> -
>> >> > 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 & business topics through brief surveys-and earn cash
>> >> >
>> >>
>> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
>> >> > ___
>> >> > Wicket-user mailing list
>> >> > Wicket-user@lists.sourceforge.net
>> >> > https://lists.sourceforge.net/lists/listinfo/wicket-user
>> >> >
>> >> >
>> >>
>> >> --
>> >> View this message in context:
>> >>
>> http://www.nabble.com/Wicket-Ajax-Debug%3A-Channel-busy---postponing-...-tf3279219.html#a9124357
>> >> Sent from the Wicket - User mailing list archive at Nabble.com.
>> >>
>> >>
>> >>
>> -
>> >> 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 & business topics through brief surveys-and earn cash
>> >>
>> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
>> >> ___
>> >> Wicket-user mailing list
>> >> Wicket-user@lists.sourceforge.net
>> >> https://lists.sourceforge.net/lists/listinfo/wicket-user
>> >>
>> >
>> >
>> -
>> > 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 & business topics through brief surveys-and earn cash
>> >
>> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
>> > ___
>> > Wicket-user mailing list
>> > Wicket-user@lists.sourceforge.net
>> > https://lists.sourceforge.net/lists/listinfo/wicket-user
>> >
>> >
>>
>> --
>> View this message in context:
>> http://www.nabble.com/Wicket-Ajax-Debug%3A-Channel-busy---postponing-...-tf3279219.html#a9124437
>> Sent from the Wicket - User mailing list archive at Nabble.com.
>>
>>
>> ---

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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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 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"?
>
>
> There's an example here:
> http://wicketstuff.org/wicket13/signin2
>
> I haven't seen how it works yet, but I thought it might help :-)
>
> Xavier
>

There seems to be a problem with at least that particular 1.3 example -
only the *.html files show up in the source code browser / popup.



But you can easily check the code here:
http://svn.apache.org/repos/asf/incubator/wicket/branches/wicket-1.x/wicket-examples/src/main/java/wicket/examples/signin2/

- Xavier

-

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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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 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"?
>
>
> There's an example here:
> http://wicketstuff.org/wicket13/signin2
>
> I haven't seen how it works yet, but I thought it might help :-)
>
> Xavier
>

There seems to be a problem with at least that particular 1.3 example -
only the *.html files show up in the source code browser / popup.



Yes, I noticed the same thing with all examples for which I tried to
check the sources. But I'm brand new to wicket, so I didn't know if it
was normal or not.

Xavier

-

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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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

2007-02-23 Thread Igor Vaynberg

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 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
>> without ... so my ajax is broken on that page. I suspect that it began
to
>> start happening when I've created navigation with OnMouseDown events
with
>> window.location.href='+urlFor(mySuperPage.class, new PageProperties())'
>> ...
>> maybe it is somehow done in a wrong way ?
>>
>>
>>
>> igor.vaynberg wrote:
>> >
>> > 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 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 loops forever ...
>> >> Can you tell me what is wrong ?
>> >>
>> >> Wicket 1.2.5, Mozilla FireFox 2.0
>> >> --
>> >> View this message in context:
>> >>
>>
http://www.nabble.com/Wicket-Ajax-Debug%3A-Channel-busy---postponing-...-tf3279219.html#a9120006
>> >> Sent from the Wicket - User mailing list archive at Nabble.com.
>> >>
>> >>
>> >>
>>
-
>> >> 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 & business topics through brief surveys-and earn cash
>> >>
>>
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
>> >> ___
>> >> Wicket-user mailing list
>> >> Wicket-user@lists.sourceforge.net
>> >> https://lists.sourceforge.net/lists/listinfo/wicket-user
>> >>
>> >
>> >
>>
-
>> > 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 & business topics through brief surveys-and earn cash
>> >
>>
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
>> > ___
>> > Wicket-user mailing list
>> > Wicket-user@lists.sourceforge.net
>> > https://lists.sourceforge.net/lists/listinfo/wicket-user
>> >
>> >
>>
>> --
>> View this message in context:
>>
http://www.nabble.com/Wicket-Ajax-Debug%3A-Channel-busy---postponing-...-tf3279219.html#a9124357
>> Sent from the Wicket - User mailing list archive at Nabble.com.
>>
>>
>>
-
>> 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 & business topics through brief surveys-and earn cash
>>
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
>> ___
>> Wicket-user mailing list
>> Wicket-user@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/wicket-user
>>
>
>
-
> 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 & business topics through brief surveys-and earn cash
>
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>
>

--
View this message in context:
http://www.nabble.com/Wicket-Ajax-Debug%3A-Channel-busy---postponing-...-tf3279219.html#a9124437
Sent from the Wicket - User mailing list archive at Nabble.com.


-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

-

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 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 OnMouseDown events with
>> window.location.href='+urlFor(mySuperPage.class, new PageProperties())'
>> ...
>> maybe it is somehow done in a wrong way ?
>>
>>
>>
>> igor.vaynberg wrote:
>> >
>> > 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 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 loops forever ...
>> >> Can you tell me what is wrong ?
>> >>
>> >> Wicket 1.2.5, Mozilla FireFox 2.0
>> >> --
>> >> View this message in context:
>> >>
>> http://www.nabble.com/Wicket-Ajax-Debug%3A-Channel-busy---postponing-...-tf3279219.html#a9120006
>> >> Sent from the Wicket - User mailing list archive at Nabble.com.
>> >>
>> >>
>> >>
>> -
>> >> 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 & business topics through brief surveys-and earn cash
>> >>
>> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
>> >> ___
>> >> Wicket-user mailing list
>> >> Wicket-user@lists.sourceforge.net
>> >> https://lists.sourceforge.net/lists/listinfo/wicket-user
>> >>
>> >
>> >
>> -
>> > 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 & business topics through brief surveys-and earn cash
>> >
>> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
>> > ___
>> > Wicket-user mailing list
>> > Wicket-user@lists.sourceforge.net
>> > https://lists.sourceforge.net/lists/listinfo/wicket-user
>> >
>> >
>>
>> --
>> View this message in context:
>> http://www.nabble.com/Wicket-Ajax-Debug%3A-Channel-busy---postponing-...-tf3279219.html#a9124357
>> Sent from the Wicket - User mailing list archive at Nabble.com.
>>
>>
>> -
>> 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 & business topics through brief surveys-and earn cash
>> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
>> ___
>> Wicket-user mailing list
>> Wicket-user@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/wicket-user
>>
> 
> -
> 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 & business topics through brief surveys-and earn cash
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Wicket-Ajax-Debug%3A-Channel-busy---postponing-...-tf3279219.html#a9124437
Sent from the Wicket - User mailing list archive at Nabble.com.


-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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:
> > 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:
>
http://wicketstuff.org/wicket13/wizard/?wicket:interface=:3:staticWizardLink::ILinkListener
> :
> Hit next twice, then previous.
>
> Note that what is also strange is that if I hit next then previous I see
the
> third panel, instead of the first one.
>
> Xavier
>
> > 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
> > >
> > >
>
-
> > > 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 & business topics through brief surveys-and earn cash
> > >
>
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> > > ___
> > > Wicket-user mailing list
> > > Wicket-user@lists.sourceforge.net
> > >
> https://lists.sourceforge.net/lists/listinfo/wicket-user
> > >
> > >
> >
> >
>
-
> > 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 & business topics through brief surveys-and earn cash
> >
>
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> > ___
> > Wicket-user mailing list
> > Wicket-user@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/wicket-user
> >
>
>
>
-
> 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 & business topics through brief surveys-and earn cash
>
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>
>

-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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
without ... so my ajax is broken on that page. I suspect that it began to
start happening when I've created navigation with OnMouseDown events with
window.location.href='+urlFor(mySuperPage.class, new PageProperties())'
...
maybe it is somehow done in a wrong way ?



igor.vaynberg wrote:
>
> 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 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 loops forever ...
>> Can you tell me what is wrong ?
>>
>> Wicket 1.2.5, Mozilla FireFox 2.0
>> --
>> View this message in context:
>>
http://www.nabble.com/Wicket-Ajax-Debug%3A-Channel-busy---postponing-...-tf3279219.html#a9120006
>> Sent from the Wicket - User mailing list archive at Nabble.com.
>>
>>
>>
-
>> 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 & business topics through brief surveys-and earn cash
>>
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
>> ___
>> Wicket-user mailing list
>> Wicket-user@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/wicket-user
>>
>
>
-
> 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 & business topics through brief surveys-and earn cash
>
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>
>

--
View this message in context:
http://www.nabble.com/Wicket-Ajax-Debug%3A-Channel-busy---postponing-...-tf3279219.html#a9124357
Sent from the Wicket - User mailing list archive at Nabble.com.


-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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 OnMouseDown events with
window.location.href='+urlFor(mySuperPage.class, new PageProperties())' ...
maybe it is somehow done in a wrong way ?



igor.vaynberg wrote:
> 
> 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 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 loops forever ...
>> Can you tell me what is wrong ?
>>
>> Wicket 1.2.5, Mozilla FireFox 2.0
>> --
>> View this message in context:
>> http://www.nabble.com/Wicket-Ajax-Debug%3A-Channel-busy---postponing-...-tf3279219.html#a9120006
>> Sent from the Wicket - User mailing list archive at Nabble.com.
>>
>>
>> -
>> 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 & business topics through brief surveys-and earn cash
>> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
>> ___
>> Wicket-user mailing list
>> Wicket-user@lists.sourceforge.net
>> https://lists.sourceforge.net/lists/listinfo/wicket-user
>>
> 
> -
> 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 & business topics through brief surveys-and earn cash
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Wicket-Ajax-Debug%3A-Channel-busy---postponing-...-tf3279219.html#a9124357
Sent from the Wicket - User mailing list archive at Nabble.com.


-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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: http://wicketstuff.org/wicket13/wizard/
follow the first link: 
http://wicketstuff.org/wicket13/wizard/?wicket:interface=:3:staticWizardLink::ILinkListener
:
Hit next twice, then previous.

Note that what is also strange is that if I hit next then previous I see
the third panel, instead of the first one.

Xavier

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
> >
> >
> -
> > 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 & business topics through brief surveys-and earn cash
> >
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> > ___
> > Wicket-user mailing list
> > Wicket-user@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/wicket-user
> >
> >
>
>
> -
> 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 & business topics through brief surveys-and earn cash
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
>
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>


-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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 it out

-igor


On 2/23/07, Eelco Hillenius <[EMAIL PROTECTED]> wrote:


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 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 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
> > >
> > >
-
> > > 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 & business topics through brief surveys-and earn cash
> > >
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> > > ___
> > > Wicket-user mailing list
> > > Wicket-user@lists.sourceforge.net
> > > https://lists.sourceforge.net/lists/listinfo/wicket-user
> > >
> > >
> >
>

-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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:
> http://wicketstuff.org/wicket13/wizard/
> follow the first link:
> http://wicketstuff.org/wicket13/wizard/?wicket:interface=:3:staticWizardLink::ILinkListener
> :
> Hit next twice, then previous.
>
> Note that what is also strange is that if I hit next then previous I see the
> third panel, instead of the first one.
>
> Xavier
>
> > 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
> > >
> > >
> -
> > > 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 & business topics through brief surveys-and earn cash
> > >
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> > > ___
> > > Wicket-user mailing list
> > > Wicket-user@lists.sourceforge.net
> > >
> https://lists.sourceforge.net/lists/listinfo/wicket-user
> > >
> > >
> >
> >
> -
> > 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 & business topics through brief surveys-and earn cash
> >
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> > ___
> > Wicket-user mailing list
> > Wicket-user@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/wicket-user
> >
>
>
> -
> 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 & business topics through brief surveys-and earn cash
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>
>

-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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 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 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
> > >
> > > -
> > > 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 & business topics through brief surveys-and earn cash
> > > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> > > ___
> > > Wicket-user mailing list
> > > Wicket-user@lists.sourceforge.net
> > > https://lists.sourceforge.net/lists/listinfo/wicket-user
> > >
> > >
> >
>

-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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 <[EMAIL PROTECTED]> wrote:
> 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
> >
> >
-
> > 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 & business topics through brief surveys-and earn cash
> >
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> > ___
> > Wicket-user mailing list
> > Wicket-user@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/wicket-user
> >
> >
>

-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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:
http://wicketstuff.org/wicket13/wizard/?wicket:interface=:3:staticWizardLink::ILinkListener
:
Hit next twice, then previous.

Note that what is also strange is that if I hit next then previous I see the
third panel, instead of the first one.

Xavier

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
>
>
-
> 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 & business topics through brief surveys-and earn cash
>
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>
>

-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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 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
> >
> > -
> > 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 & business topics through brief surveys-and earn cash
> > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> > ___
> > Wicket-user mailing list
> > Wicket-user@lists.sourceforge.net
> > https://lists.sourceforge.net/lists/listinfo/wicket-user
> >
> >
>

-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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
>
> How do I do this, also is there any documentation on implementing
> "remember me"?


There's an example here:
http://wicketstuff.org/wicket13/signin2

I haven't seen how it works yet, but I thought it might help :-)

Xavier



There seems to be a problem with at least that particular 1.3 example - only
the *.html files show up in the source code browser / popup.
-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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
>
> -
> 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 & business topics through brief surveys-and earn cash
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>
>

-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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 implementing
"remember me"?



There's an example here:
http://wicketstuff.org/wicket13/signin2

I haven't seen how it works yet, but I thought it might help :-)

Xavier

 And how do I delete the cookies created, if any?


Thanks,

Peter.

-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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

-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[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 cookies created, if any?

Thanks,

Peter.
-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[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
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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 get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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 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 loops forever ...
Can you tell me what is wrong ?

Wicket 1.2.5, Mozilla FireFox 2.0
--
View this message in context:
http://www.nabble.com/Wicket-Ajax-Debug%3A-Channel-busy---postponing-...-tf3279219.html#a9120006
Sent from the Wicket - User mailing list archive at Nabble.com.


-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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 . 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 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.  However, I need to create these 
>> links using Wicket, because the arguments to the functions are being pulled 
>> out of the database.  When the user clicks on these links, the JS function 
>> should be executed, but the user's browser should NOT hit the website.
>>
>> I have tried creating Link objects and overwriting getOnClickScript() to 
>> return the function call, and onClick() with an empty method, however this 
>> empty onClick() stills seems to make Wicket hit the website.  
>>
>> >From within my Page class, I want to create the JavaScript, and have just 
>> >that JavaScript execute, and nothing else to happen at all.  Can anyone 
>> >tell me how to set up my Link not to do this?
>>
>> Thanks in advance!
>>
>> Will
>>   
>> 
>
>   

-- 
Erik van Oosten
http://day-to-day-stuff.blogspot.com/


-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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 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

-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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

2007-02-23 Thread Erik van Oosten
Attach a simple WebMarkupComponent to your . 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 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.  However, I need to create these links 
> using Wicket, because the arguments to the functions are being pulled out of 
> the database.  When the user clicks on these links, the JS function should be 
> executed, but the user's browser should NOT hit the website.
>
> I have tried creating Link objects and overwriting getOnClickScript() to 
> return the function call, and onClick() with an empty method, however this 
> empty onClick() stills seems to make Wicket hit the website.  
>
> >From within my Page class, I want to create the JavaScript, and have just 
> >that JavaScript execute, and nothing else to happen at all.  Can anyone tell 
> >me how to set up my Link not to do this?
>
> Thanks in advance!
>
> Will
>   

-- 
Erik van Oosten
http://day-to-day-stuff.blogspot.com/


-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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 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.  However, I need to create these
links using Wicket, because the arguments to the functions are being pulled
out of the database.  When the user clicks on these links, the JS function
should be executed, but the user's browser should NOT hit the website.

I have tried creating Link objects and overwriting getOnClickScript() to
return the function call, and onClick() with an empty method, however this
empty onClick() stills seems to make Wicket hit the website.

>From within my Page class, I want to create the JavaScript, and have just
that JavaScript execute, and nothing else to happen at all.  Can anyone tell
me how to set up my Link not to do this?

Thanks in advance!

Will


-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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
exception
message?

Currently:
throw new WicketRuntimeException("unable to set object " + object + ",
model: " + this
+ ", called with component " +
component, e);

Proposed:
throw new WicketRuntimeException("unable to set object " + object +
"\nmodel: " + this
+ "\n called with component " +
component, e);

Basically, put the three parts of the exception on different lines.  Why?
Well, the toString output of the model that is attached to the failing
component is HUGE and it makes it hard to find the exception "readily".
Having the parts on different lines would allow me to easily recognize the
component that is failing instead of have to search for the phrase "called
with component" in the error message to seek to the correct location in
the
message.

I know, it is trivial to search the message, but I am a fan of the tool
working for me.  I would be willing to submit a patch, I would just need
to
know the approved format as well as what exceptions message to change.

Chuck
--
View this message in context:
http://www.nabble.com/I-propose-a-slight-change-to-setObject-exception-message-tf3278997.html#a9119249
Sent from the Wicket - User mailing list archive at Nabble.com.


-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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...
return str;
 }
}
}
-igor



On 2/23/07, Kingen Star <[EMAIL PROTECTED]> wrote:


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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[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
-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[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.  However, I need to create these links using 
Wicket, because the arguments to the functions are being pulled out of the 
database.  When the user clicks on these links, the JS function should be 
executed, but the user's browser should NOT hit the website.

I have tried creating Link objects and overwriting getOnClickScript() to return 
the function call, and onClick() with an empty method, however this empty 
onClick() stills seems to make Wicket hit the website.  

>From within my Page class, I want to create the JavaScript, and have just that 
>JavaScript execute, and nothing else to happen at all.  Can anyone tell me how 
>to set up my Link not to do this?

Thanks in advance!

Will


-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[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 loops forever ...
Can you tell me what is wrong ?

Wicket 1.2.5, Mozilla FireFox 2.0
-- 
View this message in context: 
http://www.nabble.com/Wicket-Ajax-Debug%3A-Channel-busy---postponing-...-tf3279219.html#a9120006
Sent from the Wicket - User mailing list archive at Nabble.com.


-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[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 + ",
model: " + this
+ ", called with component " + 
component, e);

Proposed:
throw new WicketRuntimeException("unable to set object " + object +
"\nmodel: " + this
+ "\n called with component " + 
component, e);

Basically, put the three parts of the exception on different lines.  Why? 
Well, the toString output of the model that is attached to the failing
component is HUGE and it makes it hard to find the exception "readily". 
Having the parts on different lines would allow me to easily recognize the
component that is failing instead of have to search for the phrase "called
with component" in the error message to seek to the correct location in the
message.

I know, it is trivial to search the message, but I am a fan of the tool
working for me.  I would be willing to submit a patch, I would just need to
know the approved format as well as what exceptions message to change.

Chuck
-- 
View this message in context: 
http://www.nabble.com/I-propose-a-slight-change-to-setObject-exception-message-tf3278997.html#a9119249
Sent from the Wicket - User mailing list archive at Nabble.com.


-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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 right server?
>

i think you can look at Jetty or Glashfish.


All lazy delayed sessions stuff did come from 2.0 to 1.3 so 2.0 should all
> > have that. Currently there are some optimizes in 1.3 that needs to be
> > ported to 2.0 again. But this will happen soon.
>
>
> Ok. What I still don't see clearly enough is what are the advantages of
> the 2.0 stream over the 1.3. Could you give me some quick insight on
> what are the major differences between the two?
>


java 2 does have the constructor change (parent must be given in the
constructor) So that in the constructor you have access to everything.
and java 5 support (generics) for more type safety.
And some more features but most of them are backported to 1.3 to keep the
2 streams in sync as much as possible.



Ok, so I'll go with wicket 2, thanks a lot for your time!

- Xavier

johan


-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[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;
Class destinationClass;

public AjaxMouseDownLinkBehavior(Component owner, Class
destinationClass) {
super("OnMouseDown");
this.owner = owner;
this.destinationClass = destinationClass;
}

protected IAjaxCallDecorator getAjaxCallDecorator() {
return new
AjaxCallDecoratorProgressControl(owner.urlFor(destinationClass, new
PageParameters()));
}

protected void onEvent(final AjaxRequestTarget target) {
}
}

-- 
View this message in context: 
http://www.nabble.com/Deprecation-warning-tf3278856.html#a9118787
Sent from the Wicket - User mailing list archive at Nabble.com.


-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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.


All lazy delayed sessions stuff did come from 2.0 to 1.3 so 2.0 should all

> have that. Currently there are some optimizes in 1.3 that needs to be
> ported to 2.0 again. But this will happen soon.


Ok. What I still don't see clearly enough is what are the advantages of
the 2.0 stream over the 1.3. Could you give me some quick insight on what
are the major differences between the two?




java 2 does have the constructor change (parent must be given in the
constructor) So that in the constructor you have access to everything.
and java 5 support (generics) for more type safety.
And some more features but most of them are backported to 1.3 to keep the 2
streams in sync as much as possible.

johan
-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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 the right 
people... Their IRC channel is also dead.

 

 

Regards Nino

 



From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Frank Bille
Sent: 22. februar 2007 22:33
To: wicket-user@lists.sourceforge.net
Subject: Re: [Wicket-user] Testing Wicket with JMeter

 

On 2/22/07, Eelco Hillenius <[EMAIL PROTECTED]> wrote:

Did anyone try to get people from JMeter involved? Maybe they can help
us sort this out?


Nah, I don't believe in this kind of open source collaboration.. ;-)

Seriously I guess my excuse is time. It's easy to solve, when you know the 
solution. Nino is this something you want to do something about? 

Frank

-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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 1.2.5, but not compatible with the
upcoming Wicket 2.0.

--
Filippo Diotalevi
http://www.diotalevi.com

-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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 deadline, and I use java6, so I guess using 2.0 is
better.

Why wouldn't a polling ajax behavior work? Do you really want to have an

constant open connection somehow?
(also a thing the servlet spec is currently now really build for, but
jetty does go around it i guess)
Why do you need it exactly? Does the server comes with new data constantly
that you want to see as soon as possible?



Maybe polling is better for what I need, I'm still not comfortable with the
http protocol and how server side notifications can be done. My problem is
that I have page for which I would like to be able to serve a lot of
clients, some of which will need to be updated frequently and others won't.
And I can't really guess which one need frequent updates. So I'm wondering
if polling from all clients every 5 seconds is better than using an open
connection for each which only sends data when needed. I don't really know
the cost of establishing a connection on the server and processing it just
to know that nothing has changed. If this cost is not important, polling
should be ok. Otherwise, maybe an open connection would better fit my need?

We did improve the memory usage in wicket 1.3 and 2.0 by storing much less

in the session
And you can lazy delay a session now yes. But if you have constant ajax
request then currently that page would be in memory on the server side.



Yes, I understand, but it's a good thing to know that other simple pages can
be served without a session.

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?

All lazy delayed sessions stuff did come from 2.0 to 1.3 so 2.0 should all

have that. Currently there are some optimizes in 1.3 that needs to be
ported to 2.0 again. But this will happen soon.



Ok. What I still don't see clearly enough is what are the advantages of the
2.0 stream over the 1.3. Could you give me some quick insight on what are
the major differences between the two?

BTW, thanks a lot to all the wicket team, wicket is really different from
all other frameworks I've seen so far, very refreshing!

- Xavier

johan



On 2/22/07, Xavier Hanin <[EMAIL PROTECTED]> wrote:

> Hi All,
>
> I'm currently evaluating wicket for a project, and I'm very impressed so
> far by the design!
>
> I would like to start some developments and I wonder which version would
> be the best in my case. I don't plan to make a release in a short period of
> time, and I'm not afraid of looking into the code and adapt to changes, so I
> don't mind to work on a  version under development. According to what I've
> seen so far, features from 1.x branch seems ok to me, the only things
> I'm concerned with are:
> * I'll have to make heavy use of asynchronous refresh of some pages
> triggered by the server. I've seen nothing to help with that with the
> current wicket version except timer based ajax refresh. I've heard about
> cometd, but I'm not familiar with this technology yet. I've seen that some
> have worked on dojo integration, and I know that dojo provides cometd
> integration, so I guess a version compatible with the work done on
> wicket-dojo would be good
> * scalability is one of my concerns, and according to what I've read it
> seems that wicket 1.3 will provide some way to avoid opening a session
> when it's not necessary. What is the status with that? What will wicket
> 2.0 provide about that?
>
> So, could any of you give me some recommendations?
>
>
> Thanks in advance!
>
> - Xavier
>
>
> -
> 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 & business topics through brief surveys-and earn cash
>
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>
>

-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user



[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 panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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!
-- 
 Jean-Baptiste Quenot
aka  John Banana   Qwerty
http://caraldi.com/jbq/

-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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 ""e;" 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]
> > wrote:
>
> BTW it's my second post about incorrect quotes escaping and the
first
> one was more than two months ago :-(
>
> Andrew Klochkov wrote:
> > I'm trying to open a modal window right after opening my
> WebPage. So in
> > the page constructor I have this code:
> >
> >   modalWindow.add(new
> > AbstractAjaxTimerBehavior(Duration.milliseconds(100)) {
> >
> >@Override
> >protected void onTimer(AjaxRequestTarget target) {
> > stop();
> > modalWindow.show(target);
> >}
> >
> > });
> >
> > I add this behaviour to modalWindow because if I just add it to
the
> > WebPage instance wicket doesn't add script to body's onload
> handler.
> >
> > So then I see the following html source in the brower:
> >
> >  >
>
wcall=wicketAjaxGet('?wicket:interface=:9:agreement-popup-window:-1:IUnversionedBehaviorListener:7&wicket:ignoreIfNotActive=true',
>
> > function() { }, function() { });\", 100);">
> >
> > And it doesn't work because of invalid qoutes escaping (\"). How
> can I
> > avoid/fix it?
> >
> >
>
>
> --
> Andrew Klochkov
>
>
>
-
> 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 & business topics through brief surveys-and earn cash
>
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> <
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV>
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> 
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>
>
> 
>
>
-
> 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 & business topics through brief surveys-and earn cash
>
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> 
>
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>


--
Andrew Klochkov


-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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 servlet spec is currently now really build for, but jetty
does go around it i guess)
Why do you need it exactly? Does the server comes with new data constantly
that you want to see as soon as possible?

We did improve the memory usage in wicket 1.3 and 2.0 by storing much less
in the session
And you can lazy delay a session now yes. But if you have constant ajax
request then currently that page would be in memory on the server side.
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..

All lazy delayed sessions stuff did come from 2.0 to 1.3 so 2.0 should all
have that. Currently there are some optimizes in 1.3 that needs to be
ported to 2.0 again. But this will happen soon.

johan


On 2/22/07, Xavier Hanin <[EMAIL PROTECTED]> wrote:


Hi All,

I'm currently evaluating wicket for a project, and I'm very impressed so
far by the design!

I would like to start some developments and I wonder which version would
be the best in my case. I don't plan to make a release in a short period of
time, and I'm not afraid of looking into the code and adapt to changes, so I
don't mind to work on a  version under development. According to what I've
seen so far, features from 1.x branch seems ok to me, the only things I'm
concerned with are:
* I'll have to make heavy use of asynchronous refresh of some pages
triggered by the server. I've seen nothing to help with that with the
current wicket version except timer based ajax refresh. I've heard about
cometd, but I'm not familiar with this technology yet. I've seen that some
have worked on dojo integration, and I know that dojo provides cometd
integration, so I guess a version compatible with the work done on
wicket-dojo would be good
* scalability is one of my concerns, and according to what I've read it
seems that wicket 1.3 will provide some way to avoid opening a session
when it's not necessary. What is the status with that? What will wicket
2.0 provide about that?

So, could any of you give me some recommendations?


Thanks in advance!

- Xavier

-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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 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 list archive at Nabble.com.


-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[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 list archive at Nabble.com.


-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


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

2007-02-23 Thread Andrew Klochkov
I updated wicket and now it generates ""e;" 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] 
> > wrote:
>
> BTW it's my second post about incorrect quotes escaping and the first
> one was more than two months ago :-(
>
> Andrew Klochkov wrote:
> > I'm trying to open a modal window right after opening my
> WebPage. So in
> > the page constructor I have this code:
> >
> >   modalWindow.add(new
> > AbstractAjaxTimerBehavior(Duration.milliseconds(100)) {
> >
> >@Override
> >protected void onTimer(AjaxRequestTarget target) {
> > stop();
> > modalWindow.show(target);
> >}
> >
> > });
> >
> > I add this behaviour to modalWindow because if I just add it to the
> > WebPage instance wicket doesn't add script to body's onload
> handler.
> >
> > So then I see the following html source in the brower:
> >
> >  >
> 
> wcall=wicketAjaxGet('?wicket:interface=:9:agreement-popup-window:-1:IUnversionedBehaviorListener:7&wicket:ignoreIfNotActive=true',
>
> > function() { }, function() { });\", 100);">
> >
> > And it doesn't work because of invalid qoutes escaping (\"). How
> can I
> > avoid/fix it?
> >
> >
>
>
> --
> Andrew Klochkov
>
>
> -
> 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 & business topics through brief surveys-and earn cash
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> 
> 
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> 
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>
>
> 
>
> -
> 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 & business topics through brief surveys-and earn cash
> http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
> 
>
> ___
> Wicket-user mailing list
> Wicket-user@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wicket-user
>   


-- 
Andrew Klochkov


-
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 & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user