[Wicket-user] RadioChoice-page reload

2007-02-07 Thread tbt
Hi!, I'm a newbie to wicket and i'd like to know, how to load a new page once the user clicks(onClick event) on a radio button. please provide a simple example. Thanks -- View this message in context: http://www.nabble.com/RadioChoice-page-reload-tf3185521.html#a8841353 Sent from the

Re: [Wicket-user] Problem: BookmarkablePageLink does not fireonSubmit...

2007-02-07 Thread Borst, Gordon
Hi... Sorry for that.. I will try again with example... I have 2 classes. DataPresentation with the PageLink und the class UpdatePage extends WebPage. It is a problem similar to the linkomatic example of wicket, where a popup is create by BookmarkablePagelink, But i has to fire an onsubmit

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

2007-02-07 Thread Dmitry Kandalov
Hi, I have a code like this formTester.select( PATH_TO_DDC, 2 ); formTester.submit(); And I want onSelectionChanged() event to be called on DropDownChoice. What is the best way to do it? Thanks in advance. -- View this message in context:

Re: [Wicket-user] URL based session tracking

2007-02-07 Thread James Carnegie
Hi Igor, Igor Vaynberg wrote: i thought he explained why...because they need to be able to take down one of the nodes and install a different version on it. the static resources might be different between two versions. Indeed, my point exactly. :) the problem is that this is really

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

2007-02-07 Thread Johan Compagner
something like this: setupRequestAndResponse(); getServletRequest().setRequestToComponent(DDC); processRequestCycle(); johan On 2/7/07, Dmitry Kandalov [EMAIL PROTECTED] wrote: Hi, I have a code like this formTester.select( PATH_TO_DDC, 2 );

Re: [Wicket-user] Problem: BookmarkablePageLink does not fireonSubmit...

2007-02-07 Thread Johan Compagner
so to make it clear when you click on the link (that popups up the popup) you also want to submit the form? That is not possible because its a normal link. That doesn't a submit. For this you have to make that link somekind of submit button. But popup a window when you submit the form must be

Re: [Wicket-user] RadioChoice-page reload

2007-02-07 Thread Johan Compagner
you can use the onselectionchange of the radio choice. or add a behaviour that makes the onclick that does a callback and then set a response page johan On 2/7/07, tbt [EMAIL PROTECTED] wrote: Hi!, I'm a newbie to wicket and i'd like to know, how to load a new page once the user

[Wicket-user] Can I tell DataTable not to escape HTML?

2007-02-07 Thread Carfield Yim
I try to put a br/ at record but it really show that br/ to the screen. Can I tell DataTable not to escape HTML? - Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with

[Wicket-user] JS effects on DataView rows

2007-02-07 Thread Alexis
Let me explain a little problem i came across lately. I have a DataView containing rows, each row contains an AjaxCheckbox. I have also AjaxLinks that perform actions on selected rows. Everything works fine, to spice it up I want to add some js effects on checked rows when an AjaxLink is

Re: [Wicket-user] Can I tell DataTable not to escape HTML?

2007-02-07 Thread Carfield Yim
Oh, just get it , I can use Component.setEscapeModelStrings() for this issue On 2/7/07, Carfield Yim [EMAIL PROTECTED] wrote: I try to put a br/ at record but it really show that br/ to the screen. Can I tell DataTable not to escape HTML?

Re: [Wicket-user] URL based session tracking

2007-02-07 Thread James Carnegie
Hi Igor, Igor Vaynberg wrote: the problem is that this is really outside of wicket's domain because these are static and not wicket-related resources you are talking about? so if you have img src=images/foo.gif/ you want jsessionid appended to that? i guess you can use a filter to

Re: [Wicket-user] How do I get the list of logged in users in Wciket2.0?

2007-02-07 Thread Peter Neubauer
Thanks Eelco, will try that out. /peter On 2/6/07, Eelco Hillenius [EMAIL PROTECTED] wrote: There is no standard facility for this. One way is to do this independent of Wicket by configuring a session listener:

[Wicket-user] Pro Wicket - TextTemplateHeaderContributor

2007-02-07 Thread Robert ...
On page 232 of Pro Wicket javascript is dynamically added in the head element. The following method is used in the ConfirmDeleteBehavior: public void bind(final Component component) { this.component = component; component.setOutputMarkupId(true);

Re: [Wicket-user] How to change the style of FeedbackPanel ?

2007-02-07 Thread Zhang Hailong
Hi Igor, Would you please give me an example of this? I have looked at the source of FeedbackPanel but I still don't know which method to overwrite and how to provide my own markup. Thank you! Regards, Hailong Zhang On 2/7/07, Igor Vaynberg [EMAIL PROTECTED] wrote: yes, simply subclass and

[Wicket-user] NPE on session expire

2007-02-07 Thread Vincent Demay
Hi all, I've got a problem when my application session expire, an NPE is threw with the following stack trace. ERROR - RequestCycle - java.lang.NullPointerException at

[Wicket-user] Prompt dialog with form submit in ajax

2007-02-07 Thread Marc-Andre Houle
I wanted to make a prompt dialog that use Ajax. When you click on the button, it prompt you for a string and than submit the form so we can use it. I search a lot in the source code and I found a way to make that with AjaxEventBehavior. I submit my behavior to the list just to have opinion of

Re: [Wicket-user] Stockquote

2007-02-07 Thread Eelco Hillenius
The example would be better with Ajax, so that you can see the page with a place holder that says it is loading. Eelco On 2/6/07, Martijn Dashorst [EMAIL PROTECTED] wrote: It uses a veey slooo demo webservice. Martijn On 2/6/07, nilo de roock

Re: [Wicket-user] How to change the style of FeedbackPanel ?

2007-02-07 Thread Lan Boon Ping
Hi Hailong, E.g Step1. Create a subclass of FeedbackPanel public class MyFeedBackPanel extends FeedbackPanel{ public MyFeedBackPanel(String id) { super(id); } } Step 2. Create a markup for this class and make sure FeedbackPanel wicket:ids markup matched with your own markup.

Re: [Wicket-user] Stockquote

2007-02-07 Thread Martijn Dashorst
No, the example was built to show the different types of custom components. Not how to ajaxify things. It is the implementation of http://wicketframework.org/ExampleStockQuote.html Martijn On 2/7/07, Eelco Hillenius [EMAIL PROTECTED] wrote: The example would be better with Ajax, so that you can

Re: [Wicket-user] How to change the style of FeedbackPanel ?

2007-02-07 Thread Eelco Hillenius
Would you please give me an example of this? I have looked at the source of FeedbackPanel but I still don't know which method to overwrite and how to provide my own markup. Thank you! You can always extend any panel (that is not final) or page and provide markup like you would normally do.

[Wicket-user] Hosting Guide For High Traffic Wicket Sites

2007-02-07 Thread Ayodeji Aladejebi
Please I will like to request assistance from Wicket Users who have started hosting projects online with Wicket. What are the common challenges generally. is it more RAM that one is required to buy? is that the major resource requirement What is the best hosting spec recommendation assuming

[Wicket-user] Models and Pages

2007-02-07 Thread Levy, Jeremy
I have a bunch of labels on a page and I have associated the page with a CompoundPropertyModel, however when I update the values in the model the page doesn't reflect the change.. See the following code for an example: public View() { super(new

Re: [Wicket-user] Stockquote

2007-02-07 Thread Eelco Hillenius
On 2/7/07, Martijn Dashorst [EMAIL PROTECTED] wrote: No, the example was built to show the different types of custom components. Not how to ajaxify things. It is the implementation of http://wicketframework.org/ExampleStockQuote.html I know what it does. It's just that this isn't immediately

Re: [Wicket-user] Models and Pages

2007-02-07 Thread Levy, Jeremy
Uhh, forget it ;) From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Levy, Jeremy Sent: Wednesday, February 07, 2007 11:16 AM To: wicket-user@lists.sourceforge.net Subject: [Wicket-user] Models and Pages I have a bunch of labels on a page and I

Re: [Wicket-user] URL based session tracking

2007-02-07 Thread Eelco Hillenius
So should I start a JIRA or does this end here? Please open up an issue. Thanks, Eelco - Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to

Re: [Wicket-user] How to change the style of FeedbackPanel ?

2007-02-07 Thread Eelco Hillenius
On 2/7/07, Eelco Hillenius [EMAIL PROTECTED] wrote: Would you please give me an example of this? I have looked at the source of FeedbackPanel but I still don't know which method to overwrite and how to provide my own markup. Thank you! You can always extend any panel (that is not final)

Re: [Wicket-user] Pro Wicket - TextTemplateHeaderContributor

2007-02-07 Thread Eelco Hillenius
This is most likely due a bug in 1.2.4, which should be solved for 1.2.5 and 1.3.x Eelco On 2/7/07, Robert ... [EMAIL PROTECTED] wrote: On page 232 of Pro Wicket javascript is dynamically added in the head element. The following method is used in the ConfirmDeleteBehavior: public void

Re: [Wicket-user] Prompt dialog with form submit in ajax

2007-02-07 Thread Marc-Andre Houle
In fact, I don't care if it is core developper or anybody else, every opinion is welcome! :) On 2/7/07, Marc-Andre Houle [EMAIL PROTECTED] wrote: I wanted to make a prompt dialog that use Ajax. When you click on the button, it prompt you for a string and than submit the form so we can use it.

Re: [Wicket-user] How to change the style of FeedbackPanel ?

2007-02-07 Thread Zhang Hailong
Thank you all~ That helps : ) Regards, Hailong Zhang On 2/8/07, Eelco Hillenius [EMAIL PROTECTED] wrote: On 2/7/07, Eelco Hillenius [EMAIL PROTECTED] wrote: Would you please give me an example of this? I have looked at the source of FeedbackPanel but I still don't know which method to

Re: [Wicket-user] JS effects on DataView rows

2007-02-07 Thread Igor Vaynberg
you can give dataview IItemReuseStrategy so new row items are not generated every request. so something like: dataview.setItemReuseStrategy( ReuseIfModelsEqualStrategy.getInstance()); then override hashcode/equals on the model class that is passed to dataview.populateitem and if the same row

Re: [Wicket-user] URL based session tracking

2007-02-07 Thread Igor Vaynberg
is the jira issue necessary? do we not already have IMarkupFilter that can be used for this? what i meat by saying it is outside the wicket scope is that if you have pages generated by something else then it is not wicket's job to process that markup somehow - ie we do not need to provide a

Re: [Wicket-user] URL based session tracking

2007-02-07 Thread Eelco Hillenius
On 2/7/07, Igor Vaynberg [EMAIL PROTECTED] wrote: is the jira issue necessary? do we not already have IMarkupFilter that can be used for this? what i meat by saying it is outside the wicket scope is that if you have pages generated by something else then it is not wicket's job to process

Re: [Wicket-user] Pro Wicket - TextTemplateHeaderContributor

2007-02-07 Thread Robert ...
Thanks for the information. That would be the second bug I encounter when trying the examples from the book. Is there any estimate on a release date for the next version? On 2/7/07, Eelco Hillenius [EMAIL PROTECTED] wrote: This is most likely due a bug in 1.2.4, which should be solved for

Re: [Wicket-user] Pro Wicket - TextTemplateHeaderContributor

2007-02-07 Thread Igor Vaynberg
you can get it and built it yourself from svn right now it is in branches/wicket-1.2.x as far as release date, martijn would know better. was supposed to be last weekend? -igor On 2/7/07, Robert ... [EMAIL PROTECTED] wrote: Thanks for the information. That would be the second bug I

[Wicket-user] ApacheCon 2007

2007-02-07 Thread nilo de roock
My office approved my attendance of the ApacheCon, all 4 days. I have seen that registration is open now. I thought that the entrance fee of +/-$900 covered everything, this doesn't seem to be the case. They charge $300 for attending a Wicket seminar. The thing is that I am rather newbie to

Re: [Wicket-user] ApacheCon 2007

2007-02-07 Thread Martijn Dashorst
It would be my first as well. From previous conferences (JavaOne, TSSJS Europe, JavaPolis): Do's: drink lots of beer Don'ts: drink too much beer Stay away from Matt Raible if you can't hold your liquor. Run and don't look back when he offers you a 'car bomb'. Other than that, keep an eye out

Re: [Wicket-user] Pro Wicket - TextTemplateHeaderContributor

2007-02-07 Thread Martijn Dashorst
Read the dev list. I have a release candidate available at my personal web site (p.a.o) which is to be voted on for a release (VOTE thread?) Martijn On 2/7/07, Igor Vaynberg [EMAIL PROTECTED] wrote: you can get it and built it yourself from svn right now it is in branches/wicket-1.2.x as

Re: [Wicket-user] Pro Wicket - TextTemplateHeaderContributor

2007-02-07 Thread Igor Vaynberg
thought we had already voted? -igor On 2/7/07, Martijn Dashorst [EMAIL PROTECTED] wrote: Read the dev list. I have a release candidate available at my personal web site (p.a.o) which is to be voted on for a release (VOTE thread?) Martijn On 2/7/07, Igor Vaynberg [EMAIL PROTECTED] wrote:

Re: [Wicket-user] Pro Wicket - TextTemplateHeaderContributor

2007-02-07 Thread Eelco Hillenius
2 people it seems :) Eelco On 2/7/07, Igor Vaynberg [EMAIL PROTECTED] wrote: thought we had already voted? - Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with

Re: [Wicket-user] ApacheCon 2007

2007-02-07 Thread Alexandru Popescu
On 2/7/07, Martijn Dashorst [EMAIL PROTECTED] wrote: It would be my first as well. From previous conferences (JavaOne, TSSJS Europe, JavaPolis): Do's: drink lots of beer Don'ts: drink too much beer Stay away from Matt Raible if you can't hold your liquor. Run and don't look back when he

[Wicket-user] wicket + commons vfs

2007-02-07 Thread Mark R. Andrachek, Jr.
Greetings! I just recently discovered wicket and have been playing around with it. I'm impressed so far, it seems to be just what I was looking for. I've also been playing around with apache/jakarta commons vfs module (just released 1.0 this past December), which provides i/o access to files

[Wicket-user] How can I add panel on submit?

2007-02-07 Thread Ramazan Pekin
Hi to everyone, I want to add a new component to my page on my form submit, can I do that? I want to show the form result on this component. For example I want to show the result of the form with the Panel. Can you help me with example code? Thank to everyone.

Re: [Wicket-user] wicket + commons vfs

2007-02-07 Thread Igor Vaynberg
wicket also caches the markup, so this isnt exactly going to work. wicket has what is known as style and variation that means your component for MyPage.class can have alternative markups such as MyPage_style.html or MyPage_style_variation.html style is set on session and is a session-wide

Re: [Wicket-user] How can I add panel on submit?

2007-02-07 Thread Igor Vaynberg
one way: add the panel and set it to invisible, in your onsubmit set it back to visible. see component.is/setvisible() another way: add a placeholder component such as webmarkupcontainer and in onsubmit replace it with your actual panel -igor On 2/7/07, Ramazan Pekin [EMAIL PROTECTED] wrote:

Re: [Wicket-user] wicket + commons vfs

2007-02-07 Thread Mark R. Andrachek, Jr.
So if you have 25 customers with custom look and feels, you have 25 _variation files, each specific to a customer. Or make it 50, or 100, or 1,000 customers. You don't want to deploy all the variations to all the customers (they hold copyrights on some of their graphics and other ui elements, so

Re: [Wicket-user] ApacheCon 2007

2007-02-07 Thread nilo de roock
There's a 2 hour presentation from Matt Raible wearing a cowboy hat on Google Video somewhere. I wasn't planning on seeing him live, I hope it won't be too American. Thanks for the tips. - nilo Martijn Dashorst wrote: It would be my first as well. From previous conferences (JavaOne, TSSJS

Re: [Wicket-user] wicket + commons vfs

2007-02-07 Thread Eelco Hillenius
Did you play around yet to see how Wicket and VFS work together? Eelco On 2/7/07, Mark R. Andrachek, Jr. [EMAIL PROTECTED] wrote: So if you have 25 customers with custom look and feels, you have 25 _variation files, each specific to a customer. Or make it 50, or 100, or 1,000 customers. You

Re: [Wicket-user] wicket + commons vfs

2007-02-07 Thread Igor Vaynberg
ah, well if you dont need to switch these things on the fly it becomes much simpler you can have your build script copy the proper resources in place, or you can write your own IResourceStreamLocator to load them from anywhere you want - there is an example in wicket-examples for custom markup

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

2007-02-07 Thread Chris Colman
If I avoid any AJAX in Wicket will my pages be indexable by google and other search engines? - Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to

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

2007-02-07 Thread Eelco Hillenius
Only the pages that are bookmarkable. In other words: only if you intend them to be available without having a prior session. Eelco On 2/7/07, Chris Colman [EMAIL PROTECTED] wrote: If I avoid any AJAX in Wicket will my pages be indexable by google and other search engines?

Re: [Wicket-user] ApacheCon 2007

2007-02-07 Thread mraible
Huh? I don't think I've ever worn a cowboy hat in 20 years! What's too American? I doubt I'll be too American, but I might be a bit countrified - I am a hick from the sticks you know. ;-) Matt nilo de roock wrote: There's a 2 hour presentation from Matt Raible wearing a cowboy hat on

Re: [Wicket-user] Google indexing

2007-02-07 Thread Chris Colman
From: Chris Colman [EMAIL PROTECTED] Subject: Re: [Wicket-user] Google indexing If I avoid any AJAX in Wicket will my pages be indexable by google and other search engines? Only the pages that are bookmarkable. In other words: only if you intend them to be available without having a

Re: [Wicket-user] ApacheCon 2007

2007-02-07 Thread Eelco Hillenius
On 2/7/07, mraible [EMAIL PROTECTED] wrote: Huh? I don't think I've ever worn a cowboy hat in 20 years! What's too American? I doubt I'll be too American, but I might be a bit countrified - I am a hick from the sticks you know. ;-) Matt As an aspiring US immigrant (but currently a

Re: [Wicket-user] Google indexing

2007-02-07 Thread Eelco Hillenius
See http://cwiki.apache.org/WICKET/bookmarkable-pages-and-links.html Eelco On 2/7/07, Chris Colman [EMAIL PROTECTED] wrote: From: Chris Colman [EMAIL PROTECTED] Subject: Re: [Wicket-user] Google indexing If I avoid any AJAX in Wicket will my pages be indexable by google and other

Re: [Wicket-user] ApacheCon 2007

2007-02-07 Thread Igor Vaynberg
and then you get upset when the stereotype for amsterdam is pot - its not only cause american tourists go there to get high! -igor On 2/7/07, Eelco Hillenius [EMAIL PROTECTED] wrote: On 2/7/07, mraible [EMAIL PROTECTED] wrote: Huh? I don't think I've ever worn a cowboy hat in 20 years!

[Wicket-user] martyr

2007-02-07 Thread Wang Job
Howard asked her if she wanted to take a ride on the Sybian. She ran down the list of things that have happened to her and said it's time for her to make a change. Howard said just about a week ago he was telling Beth that he really liked Ed and he'd like to invite him over to dinner. Howard

[Wicket-user] ajax libraries wicket

2007-02-07 Thread Scott Swank
Hello all, After closely considering Wicket and JSF my company has decided to go with Wicket for our web development framework. This was based on a two week prototype effort between two teams of four developers each. The Wicket team made rapid progress and had extra time to add in unrequested

Re: [Wicket-user] ajax libraries wicket

2007-02-07 Thread Eelco Hillenius
That's good news Scott! You were actually pretty helpful yourself by thinking with us and providing good cases to answer. Let's not forget b.t.w. that there is a lot of free-time sweat and tears sacrificed by the developers of MyFaces, tomahawk, etc, and that - even though JSF doesn't have my

Re: [Wicket-user] ajax libraries wicket

2007-02-07 Thread Igor Vaynberg
On 2/7/07, Scott Swank [EMAIL PROTECTED] wrote: 2. Overall there was a preference for Wicket's Java components over JSF's taglibs and backing bean code. This was not a unanimous preference, and taglibs are much more concise than Wicket code. However, the cleanness of the resulting HTML was a

[Wicket-user] Running with tomcat

2007-02-07 Thread Chris Colman
I just downloaded the wicket examples zip and managed to build them. I think the jetty jars are inside the war. I just copied the .war into the tomcat webapps directory and it sprung to life but I navigated to the web app it redirected me to the 8081 port that Jetty is listening on. How can I

Re: [Wicket-user] ApacheCon 2007

2007-02-07 Thread Martijn Dashorst
Don't forget about the oodles of mayonaisse. Gotta put it on everything! Martijn -- Vote for Wicket at the http://www.thebeststuffintheworld.com/vote_for/wicket Wicket 1.2.4 is as easy as 1-2-4. Download Wicket now! http://wicketframework.org