Re: Recommend two good complete clean Wicket+Spring+Hibernate apps?

2010-03-15 Thread David Chang
James, the info is fantastic! Many thanks!!! -David --- On Mon, 3/15/10, James Carman jcar...@carmanconsulting.com wrote: From: James Carman jcar...@carmanconsulting.com Subject: Re: Recommend two good complete clean Wicket+Spring+Hibernate apps? To: users@wicket.apache.org Date: Monday

How to dynamtically generate an image via an Ajax link?

2010-03-12 Thread David Chang
Hello, I am playing with JCaptcha. My JCaptcha is working (thanks to WIA book). I also have an Ajax link for a visitor to change the displayed image if he wishes. I am new in Wicket and I am trying to follow the idea of defining a model for a Wicket image component. However, based on my

Design of Locale-aware dropdown list?

2010-03-12 Thread David Chang
This question may be beyond Wicket’s scope but I would like to ask folks here. I am impressed by their creativity, capability, and passion. I need to display a dropdown list which is in English or Korean. The options of the dropdown list MUST be stored in database. It switches between English

A question about using Spring in Wicket 1.4

2010-03-11 Thread David Chang
Yesterday I was looking at the page Migrating to Wicket 1.4 http://cwiki.apache.org/WICKET/migrating-to-wicket-14.html Regarding SpringWebApplication, it says: SpringWebApplication has been deprecated in favor of SpringBean annotation. See SpringWebApplication javadoc for how to setup

Re: A question about using Spring in Wicket 1.4

2010-03-11 Thread David Chang
11, 2010 at 8:56 AM, David Chang david_q_zh...@yahoo.com wrote: Yesterday I was looking at the page Migrating to Wicket 1.4 http://cwiki.apache.org/WICKET/migrating-to-wicket-14.html Regarding SpringWebApplication, it says: SpringWebApplication has been deprecated in favor

Wicket allow multiple Spring context files?

2010-03-09 Thread David Chang
When I did my Spring web applications, I split Spring context files into a few smaller ones (example: one for web beans, one for DAO beans, one for Service beans, etc). I would like to follow the same approach in my Wicket application, but I notice a few odd things: 1. The order of these

Re: Example of configuring JCaptcha within Wicket?

2010-03-08 Thread David Chang
have to re-invent wheels. Best, David --- On Sun, 3/7/10, Eelco Hillenius eelco.hillen...@gmail.com wrote: From: Eelco Hillenius eelco.hillen...@gmail.com Subject: Re: Example of configuring JCaptcha within Wicket? To: users@wicket.apache.org Date: Sunday, March 7, 2010, 11:07 PM It's been

Example of configuring JCaptcha within Wicket?

2010-03-07 Thread David Chang
Anybody used the JCaptcha tool? How did you do the customization? The out-of-box config sucks. Could you please share your config and how to? Cheers! - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For

Where to put an application's configuration parameters?

2010-03-07 Thread David Chang
Hi, I am new in Wicket. I did Spring web applications before and I usually put an app's configuration parameters in the application context file. I would like to know the best practice in Wichet for setting parameters such as SMTP server, LDAP server, etc. Where should I put them? I dont

Re: Where to put an application's configuration parameters?

2010-03-07 Thread David Chang
Jeremy, thanks for chiming. I read your transition from Spring to Wicket long time ago. Best, David --- On Sun, 3/7/10, Jeremy Thomerson jer...@wickettraining.com wrote: From: Jeremy Thomerson jer...@wickettraining.com Subject: Re: Where to put an application's configuration parameters

Re: Where to put an application's configuration parameters?

2010-03-07 Thread David Chang
configuration parameters? To: users@wicket.apache.org Date: Sunday, March 7, 2010, 3:26 PM Why not use Spring *with* Wicket? On Sun, Mar 7, 2010 at 3:15 PM, David Chang david_q_zh...@yahoo.com wrote: Hi, I am new in Wicket. I did Spring web applications before and I usually put an app's

OnlyTargetActivePage Question

2010-03-05 Thread David Skuben
Hi everybody, I'm now looking in classes AbstractAjaxBehavior and AbstractDefaultAjaxBehavior. There are two similar methods: getCallbackUrl() and getCallbackScript() and I don't understand why first set onlyTargetActivePage to true and second to false. Is it right ? If someone know about that,

OnlyTargetActivePage param

2010-03-04 Thread David Skuben
Hi everybody, I'm now looking in classes AbstractAjaxBehavior and AbstractDefaultAjaxBehavior. There are two similar methods: getCallbackUrl() and getCallbackScript() and I don't understand why first set onlyTargetActivePage to true and second to false. Is it right ? If someone know about that,

How to strip Wicket tags in development mode?

2010-03-04 Thread David Chang
I understand that in deployment, all Wicket tags are stripped from the rendered markup that is sent to the client. How can I strip all Wicket tags from the rendered markup in development mode. I want to see clean HTML content in the client. Thanks for help!

Re: How to strip Wicket tags in development mode?

2010-03-04 Thread David Chang
, March 4, 2010, 6:47 PM David, Take a look here [1]. Regards - Cemal jWeekend OO Java Technologies, Wicket Consulting, Development, Training http://jWeekend.com [1] http://cwiki.apache.org/WICKET/how-to-remove-wicket-markup-from-output.html On 4 March 2010 23:44, David Chang

Dynamically change feedback panel border color?

2010-03-04 Thread David Chang
I am using a div with border color to enclose feedback messages. I can control whether to generate the feedback div based on whether there is any message to render. Now I hope to change its border color depending on the severity of the message. But (1) always causes error:

Re: Dynamically change feedback panel border color?

2010-03-04 Thread David Chang
:58 PM, David Chang david_q_zh...@yahoo.com wrote: I am using a div with border color to enclose feedback messages. I can control whether to generate the feedback div based on whether there is any message to render. Now I hope to change its border color depending on the severity

Re: SV: Make Wicket component ID HTML element ID?

2010-03-01 Thread David Chang
You are right. I need to be cautoius on this. I am new in Wicket. Just for the sake of discussion. I put the following code in the top page's constructor: visitChildren(new IVisitorComponent() { @Override public Object component(Component c) {

Re: Make Wicket component ID HTML element ID?

2010-03-01 Thread David Chang
:52 PM, David Chang david_q_zh...@yahoo.comwrote: Thanks for the tip. I added this approach to the top page. Here is my implemenetation: visitChildren(new IVisitorComponent() {         @Override         public Object component(Component c) {                 c.setOutputMarkupId(true

Re: SV: Make Wicket component ID HTML element ID?

2010-03-01 Thread David Chang
constructors of subclasses are called after -igor On Mon, Mar 1, 2010 at 5:06 AM, David Chang david_q_zh...@yahoo.com wrote: You are right. I need to be cautoius on this. I am new in Wicket. Just for the sake of discussion. I put the following code in the top page's constructor

Better way to find a parent compoent in page hiearchy?

2010-02-28 Thread David Chang
(memory, clustring, etc.) 2. Not all pages extending the first page may need to access this component, which make it seem unnecessary for such pages. Is there any more elegant way? I just started Wicket programming for a personal project. Thanks for any input! Regards, David

Re: Better way to find a parent compoent in page hiearchy?

2010-02-28 Thread David Chang
Vaynberg igor.vaynb...@gmail.com Subject: Re: Better way to find a parent compoent in page hiearchy? To: users@wicket.apache.org Date: Sunday, February 28, 2010, 4:04 PM Component#findParent(SomeClass.class) may be useful -igor On Sun, Feb 28, 2010 at 1:00 PM, David Chang david_q_zh

Make Wicket component ID HTML element ID?

2010-02-28 Thread David Chang
I have many Wicket components that are unique on pages. I would like to make their wicket ID HTML element ID instead of typing HTML id attribute. How can I do this? Thanks! - To unsubscribe, e-mail:

RE: Make Wicket component ID HTML element ID?

2010-02-28 Thread David Chang
...@wickettraining.com Subject: RE: Make Wicket component ID HTML element ID? To: users@wicket.apache.org Date: Sunday, February 28, 2010, 5:15 PM setOutputMarkupId(true) Jeremy Thomerson http://www.wickettraining.com -- sent from a wireless device -Original Message- From: David Chang

Re: Better way to find a parent compoent in page hiearchy?

2010-02-28 Thread David Chang
a parent compoent in page hiearchy? To: users@wicket.apache.org Date: Sunday, February 28, 2010, 4:20 PM Maybe, this will be good for you: http://wicketstuff.org/wicket13doc/org/apache/wicket/MarkupContainer.html#get(java.lang.String) Regards, Peter 2010-02-28 22:12 keltezéssel, David Chang írta

Re: Better way to find a parent compoent in page hiearchy?

2010-02-28 Thread David Chang
? To: users@wicket.apache.org Date: Sunday, February 28, 2010, 7:50 PM and the WebPage isn't a MarkupContainer or what?? 2010-02-28 23:54 keltezéssel, David Chang írta: Thanks for your input. This is interesting. Somehow I got confused. Shouldn't this method be natural part of a Component

Re: Make Wicket component ID HTML element ID?

2010-02-28 Thread David Chang
setOutputMarkupId on every child component On Feb 28, 2010, at 2:47 PM, David Chang wrote: Thanks for the info. But this method is only component-level. How can I make all Wicket components do this without repeating setOutputMarkupId(true) for each component? Regards. --- On Sun

Questions about how wicket serialization works

2010-02-21 Thread David Chang
. Does the Back button get the getObject method called too? What did I miss? Thanks, David - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Questions about how wicket serialization works

2010-02-21 Thread David Chang
the serialized form of the page hierarchy is stored., you mean the first two things? Regards, David --- On Sun, 2/21/10, Erik van Oosten e.vanoos...@grons.nl wrote: From: Erik van Oosten e.vanoos...@grons.nl Subject: Re: Questions about how wicket serialization works To: users@wicket.apache.org Date

Re: Fix super(new CompoundPropertyModel(this)) error in the WIA book

2010-02-17 Thread David Chang
of a concern in terms of memory consumption? Regards, David --- On Fri, 2/5/10, Martijn Dashorst martijn.dasho...@gmail.com wrote: From: Martijn Dashorst martijn.dasho...@gmail.com Subject: Re: Fix super(new CompoundPropertyModel(this)) error in the WIA book To: users@wicket.apache.org Date

Fix super(new CompoundPropertyModel(this)) error in the WIA book

2010-02-04 Thread David Chang
Hello, I am learning Wicket by reading Wicket in Action. I am using Wicket 1.4.5 and Java 6. On page 244, the sample code is as follows: private int counter = 0; public MyPage() { super(new CompoundPropertyModel(this)); final Label counterLabel = new Label(counter); add(counterLabel);

Re: wicket osgi (not Pax)

2010-01-28 Thread David Leangen
. Personally, I'm addicted to OSGi. I wish that somebody would come up with a good solution for this that doesn't rely on buddy classloading... Anyway, thanks for the discussion. Cheers, =David - To unsubscribe, e-mail: users

Re: wicket osgi (not Pax)

2010-01-28 Thread David Leangen
, or if there was some other real use-case. In any case, this is getting REALLY off topic... ;-) Cheers, =David - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: wicket osgi (not Pax)

2010-01-27 Thread David Leangen
ahead of you. Cheers, =David - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: wicket osgi (not Pax)

2010-01-27 Thread David Leangen
is that upon deserialization, the actual classes being deserialized are not visible to the bundle that is doing the deserialization, so a CNFE is thrown. Cheers, =David - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org

Re: wicket osgi (not Pax)

2010-01-27 Thread David Leangen
I have seen OSGi successfully used with Wicket on production environments... With no problems with the serialization issues you mentioned. Yes, I am using pax-wicket for this. What I meant was--as I understood from the original post--the person wanted to use wicket in OSGi without using a

Adding a form field at run time... is it possible?

2010-01-19 Thread David Legg
, David Legg - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Adding a form field at run time... is it possible?

2010-01-19 Thread David Legg
wanted). So I think I'm good to go! Thanks again for the very friendly welcome to Wicket. Regards, David Legg - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h

Re: Session timeout - AJAX-enabled controls

2009-11-23 Thread David Matoušek
If it's implemented in 1.4 then it's enough for me, guess I will migrate to that version then. Thanks for help, everyone involved. David Matousek Carlo Camerino napsal(a): i have verified that this fix has already been implemented in 1.4 is there any chance that this would be backported

Re: Session timeout - AJAX-enabled controls

2009-11-20 Thread David Matoušek
://www.wicket-library.com/wicket-examples/ running and were they changed lately? I am using 1.3.6 so maybe it was fixed in 1.4.x versions. David Matousek I do not have that problem: if session expires any action the user does triggering a server round trip, AJAX or not, on a protected page redirects me

Session timeout - AJAX-enabled controls

2009-11-19 Thread David Matoušek
components don't redirect, and doesn't update another components either. Is that Wicket feature, or a bug? Can components with ajax behaviors be forced to redirect to error page on session expire like non-ajax ones do? Any suggestions? Thanks for reply David Matousek -- Tato zprava byla prohledana na

HTTP Status 400 - There are some problems in the request: invalid URLPatternSpec

2009-11-10 Thread David Skuben
Hellou everyone, I use StatelessForm on GlassFish Ent Server 2.1 and I have this prob. When I submit form with method POST and Action url: http://xyz.sk/mymount/wicket:interface/:0:form::IFormSubmitListener:: server send me back status code 400 (There are some problems in the request: invalid

links on the page after invalidating the session

2009-11-07 Thread David Chang
I am reading the book: Wicket in Action. The first sentence of the Note on page 274 reads: - Always set a bookmarkable response page after you invalidate the session. - My understanding is that if this page has any Wicket-generated links, it MUST be bookmarkable links too. Correct?

A question about the book WIA

2009-11-07 Thread David Chang
I am reading the book: Wicket in Action. The first sentence of second paragraph of page 273 reads: - In the UserPanel, we created a model that extends LoadableDetachableModel for representing the current user (if any). - In this chapter (Chapter 11 Securiing your application), I am

Re: OSGi Wicket

2009-10-31 Thread David Leangen
), but I have never used their approach much even though I use the framework. Here is a post about this by me with some interesting comments from Igor: http://bioscene.blogspot.com/2009/03/serialization-in-osgi.html Good luck to you! =David On Nov 1, 2009, at 3:26 AM, Igor Vaynberg

Re: OSGi Wicket

2009-10-29 Thread David Leangen
You can take a look at pax-wicket: http://wiki.ops4j.org/display/ops4j/Pax+Wicket The project is not very active these days, but I use it and it works. Regards, =David On Oct 30, 2009, at 8:12 AM, Tomáš Mihok wrote: Hello, I'm currently designing a new application. One

Embeding PDF DynamicWebResource works in FireFox but not IE

2009-10-22 Thread David R Robison
=?wicket:interface=:6:report::IResourceListener:: type=application/pdf/ However, this works fine for FF but does not display anything for IE. I am using Wicket 1.4.2. Any ideas? Thanks, David -- David R Robison Open Roads Consulting, Inc. 103 Watson Road, Chesapeake, VA 23320 phone: (757) 546-3401 e-mail

Re: Italian Bank (was Re: Wicket 1.4.2 Released!)

2009-10-14 Thread david
JSP? Giovanni pino_o...@yahoo.com wrote .. The bank is Intesa San Paolo: http://www.group.intesasanpaolo.com This is the english link: http://group.intesasanpaolo.com/scriptIsir0/isInvestor/eng/home/eng_index.jsp Our wicket webapps are still in development. They will be released at the

Re: Open source Wicket blog

2009-10-14 Thread david
How are the blogs stored? Daniel Frisk dan...@jalbum.net wrote .. Hi, we have developed a blog tool in Wicket for our website. I just wanted to see if there is any interest in having that as an open source project? The code would have to be adopted for general use and be untangled

Re: vps hosting for wicket app

2009-10-07 Thread david
of cloud memory does not equal 500MB of real-world memory? How does this scale to what is normally expected in say an in-house datacenter composed of racks and racks of 1Us and 2Us? --David. Luther Baker lutherba...@gmail.com wrote .. Linode - my personal favorite, http://journal.dedasys.com/2008

Re: Processing dynamic text

2009-10-06 Thread David Leangen
A very simple solution to my own problem: repeaters! Man, Wicket rocks! On Oct 6, 2009, at 10:11 AM, David Leangen wrote: Wicketeers, If I have a Label that contains some text I want to process, what is the best way to do that? - Should I even be using a label? - Should I override

Re: SV: Move shared wicket components to a base page?

2009-10-05 Thread David Chang
Tor, you are right. I found a coding error in my program. Yes, this whole thing is doable. Wicket is great! Thanks! --- On Mon, 10/5/09, Wilhelmsen Tor Iver toriv...@arrive.no wrote: From: Wilhelmsen Tor Iver toriv...@arrive.no Subject: SV: Move shared wicket components to a base page? To:

Re: Start a panel, border, or page with an XML declaration?

2009-10-05 Thread David Chang
? To: users@wicket.apache.org Date: Monday, October 5, 2009, 4:27 AM 2009/10/4 David Chang david_q_zh...@yahoo.com: Phil, Thanks very much for your reply. By XML declaration, you mean something like: ?xml version=1.0 encoding=UTF-8 ? Correct? I found this piece and it may

Re: How to list files by name in Eclipe's Package Explorer?

2009-10-05 Thread David Chang
Does anybody know the trick for this task? Thanks! --- On Sun, 10/4/09, David Chang david_q_zh...@yahoo.com wrote: From: David Chang david_q_zh...@yahoo.com Subject: How to list files by name in Eclipe's Package Explorer? To: users@wicket.apache.org Date: Sunday, October 4, 2009, 4:44 PM

Re: How to list files by name in Eclipe's Package Explorer?

2009-10-05 Thread David Chang
Pedro, thanks for the tip! Cheers! --- On Mon, 10/5/09, Pedro Sena sena.pe...@gmail.com wrote: From: Pedro Sena sena.pe...@gmail.com Subject: Re: How to list files by name in Eclipe's Package Explorer? To: David Chang david_q_zh...@yahoo.com Date: Monday, October 5, 2009, 10:52 AM Hmmm

Re: How to list files by name in Eclipe's Package Explorer?

2009-10-05 Thread David Chang
devfac...@gmail.com Subject: Re: How to list files by name in Eclipe's Package Explorer? To: users@wicket.apache.org Date: Monday, October 5, 2009, 12:06 PM Would it work for you to just use the Navigator view instead of Package Explorer? On Mon, Oct 5, 2009 at 11:01 AM, David Chang

Processing dynamic text

2009-10-05 Thread David Leangen
there is no way to add markup to my html. Is this beyond the scope of Wicket, or is there something in there that I've overlooked? (Concrete example below.) Thanks! =David *** Example: I have the text: The quick brown fox jumps over the lazy brown dog. I don't know the content

Re: How to store/load strings shared by many (but not all) pages?

2009-10-04 Thread David Chang
:52 AM YourApplicationClass.properties sitting next to you YourApplicationClass.java/class will do the trick. all components/pages have access to properties stored there. -igor On Sat, Oct 3, 2009 at 8:32 PM, David Chang david_q_zh...@yahoo.com wrote: I am reading Wicket in Action

Move shared wicket components to a base page?

2009-10-04 Thread David Chang
I have two wicket pages, both of which extend a base page. In the first version, each page used a wicket componet as follows: span wicket:id=feedback / In the second version, I moved the above markup to the base page. However, I always got this error from wicket: WicketMessage: The

How to list files by name in Eclipe's Package Explorer?

2009-10-04 Thread David Chang
Hello, I am using Eclipse for devleopment. The files in its Package Explorer are listed by extensions: java files first. This is good for non-wicket development. Now each page's java and markup files are in the same directory and I hope to see them naturally stay together, which means making

Re: Move shared wicket components to a base page?

2009-10-04 Thread David Chang
On Sun, Oct 4, 2009 at 8:44 AM, David Chang david_q_zh...@yahoo.com wrote: I have two wicket pages, both of which extend a base page. In the first version, each page used a wicket componet as follows: span wicket:id=feedback / In the second version, I moved the above markup to the base

Re: Start a panel, border, or page with an XML declaration?

2009-10-04 Thread David Chang
Subject: Re: Start a panel, border, or page with an XML declaration? To: users@wicket.apache.org Date: Sunday, October 4, 2009, 6:59 AM 2009/10/4 David Chang david_q_zh...@yahoo.com: Hello, I am reading Wicket in Action. The Tip on page 291 says it is good practice to start your panels

How to store/load strings shared by many (but not all) pages?

2009-10-03 Thread David Chang
I am reading Wicket in Action and have this i18n/i10n-related question : Suppose that I have a string that is used on multiple (but NOT ALL) pages. One solution is that I can put this string in the property files for each page on which the string is used. Any other better solutions? Thanks

Start a panel, border, or page with an XML declaration?

2009-10-03 Thread David Chang
Hello, I am reading Wicket in Action. The Tip on page 291 says it is good practice to start your panels and borders (possibly your pages) with an XML declaration to force Wicket to work with them using the proper encoding. Does this mean that starting a panel, border, or page with something

Re: Can Wicket automatically remove beginning and trailing spaces in a text field?

2009-10-02 Thread David Chang
It already does that. FormComponent: protected T convertValue(String[] value) throws ConversionException { return (T)(value != null value.length 0 value[0] != null ? trim(value[0]) : null); } 2009/10/2 David Chang david_q_zh...@yahoo.com How to set it up in a Wicket application? I

Re: Can Wicket automatically remove beginning and trailing spaces in a text field?

2009-10-02 Thread David Chang
it on model level otherwise on that layer. Best wishes MB -Original Message- From: David Chang [mailto:david_q_zh...@yahoo.com] Sent: Friday, October 02, 2009 5:25 AM To: users@wicket.apache.org Subject: Can Wicket automatically remove beginning and trailing spaces in a text

Re: Can Wicket automatically remove beginning and trailing spaces in a text field?

2009-10-02 Thread David Chang
FormComponent. You don't have to do anything. Martijn On Fri, Oct 2, 2009 at 3:06 PM, David Chang david_q_zh...@yahoo.com wrote: For this to work, I have to overwrite this method either for each form or write a custom class extending FormComponent. Correct? If yes, then it is not what

Where can I find this Wicket application?

2009-09-27 Thread David Chang
Hello, I am reading Wicket-related stuff on the net and came across this Wicket discussion thread: http://osdir.com/ml/users-wicket.apache.org/2009-05/msg01196.html In the response, my wicket-advanced example application is mentioned. I would like to know where I can find this application?

avoid setters / getters by using ?

2009-09-27 Thread David Chang
Hello, I have Wicket+Spring application. It has a service object which has a few DAO members. I can use Spring's autowiring to avoid mentioning the DAO dependencies for the service bean. However, in the Java program for the service bean, I still have to add setters and getters for each DAO

Re: avoid setters / getters by using ?

2009-09-27 Thread David Chang
martin.maku...@koodaripalvelut.com Subject: Re: avoid setters / getters by using ? To: users@wicket.apache.org Date: Sunday, September 27, 2009, 3:55 PM At least in wicket you can access the fields themselves using propertymodels. ** Martin 2009/9/27 David Chang david_q_zh...@yahoo.com

Re: Transparent resolver parent child working but cannot add third component

2009-09-09 Thread David Brown
via cut-n-paste. The remaining classes are undisturbed so it works for me. Thanks for the reply, David. - Original Message - From: Pedro Santos pedros...@gmail.com To: users@wicket.apache.org Sent: Wednesday, September 9, 2009 2:46:46 PM GMT -06:00 US/Canada Central Subject: Re: Transparent

Re: StackOverFlow (Start.java) Jetty

2009-09-08 Thread David Brown
this was not the case. I just saw an email response posted by Igor where mounted classes can pair up to URLS (http://somehost/somepath/someclass) which would have easily solved my problem but unfortunately this won't become available until 1.5. Thanks again, David. - Original Message - From: Martin

Re: The alternative to: HeaderContributor.forCss

2009-09-08 Thread David Brown
Hello Jeremy, thanks for the link. This works. Regards, David. - Original Message - From: Jeremy Thomerson jer...@wickettraining.com To: users@wicket.apache.org Sent: Monday, September 7, 2009 10:44:06 PM GMT -06:00 US/Canada Central Subject: Re: The alternative

Re: StackOverFlow (Start.java) Jetty

2009-09-07 Thread David Brown
links that navigate the user to the target link in question. I am looking at the WIA Panel swap example as a possible solution. If you have any suggestions for how to replace just part of a WebPage (wicket:extend) with a whole new WebPage please advise. Regards, David. - Original Message

Re: StackOverFlow (Start.java) Jetty

2009-09-07 Thread David Brown
no component matching the markup. Is there a way to accumulate components and re-use them when needed to keep the hierarchy happy? Regards, David. - Original Message - From: Martin Makundi martin.maku...@koodaripalvelut.com To: users@wicket.apache.org Sent: Monday, September 7, 2009 12:03

Re: Passing parameters from markup to panels

2009-09-07 Thread David Leangen
Then why not just create a configuration panel so your designer can configure the number of items to display? On Sep 8, 2009, at 9:23 AM, Chris Colman wrote: you say it is laughable to require knowledge of code to configure this. i agree, but i also think its laughable to require the

The alternative to: HeaderContributor.forCss

2009-09-07 Thread David Brown
WebPage class by WebPage class way of including the path to the CSS files. I would prefer something that easily references the resources directory. The entire app gets the same CSS applied. Regards and please advise, David

StackOverFlow (Start.java) Jetty

2009-09-06 Thread David Brown
is in the log file: RESPONSE 200. What is missing? Regards, David. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Transparent resolver parent child working but cannot add third component

2009-09-04 Thread david
Hello all, I have a WebPage parent transparent resolver that displays the child page OK. The parent page is a tabbed menu and the child is a row of submenus. When the submenu child is clicked I want an added third component (a WebPage class) to be displayed. But instead I get the usual ugly

Re: Article in german Javamagazin

2009-09-02 Thread David Brown
JSF, JSP, ASP, PHP et. al. is the reason I am using Wicket. There are 10 kinds of people in this world: those who understand binary and those who don’t (Valid only for 2's complement). - Original Message - From: Peter Ertl pe...@gmx.org To: users@wicket.apache.org Sent: Wednesday,

Re: ajax navigation toolbars not updating when rows are added to initially empty table

2009-08-22 Thread David Leangen
In a nutshell, I have a table that starts off empty and rows are added to it dynamically. Perhaps if you take your table out of the nutshell, it would work? I find that things don't work so well if I put them in a nutshell. Just a thought. ;-)

Re: Session listener

2009-08-19 Thread David Leangen
What's the best way to get notified of a session timeout event from within a Wicket App when I don't have access to the deployment descriptor? I think overriding WebApplication#sessionDestroyed should do the trick. Perfect! Thank you.

Re: WicketByExample.com - Soft launch and we need editors

2009-08-07 Thread David Brown
I have been back to the site with the target in mind to look for the wicketbyexample wish-list. But, the cupboard was bare. Any plans? - Original Message - From: Andrew Lombardi and...@mysticcoders.com To: users@wicket.apache.org Sent: Friday, August 7, 2009 1:08:50 AM GMT -06:00

How do I update my model?

2009-08-05 Thread David Leangen
as dirty or something for the other components to refresh? BTW, in onSelectionChanged, I tried: panel.modelChanged(); but that didn't help much. Thanks! =David - To unsubscribe, e-mail: users-unsubscr

How Wicket's big concepts/objects work together and in what order?

2009-08-05 Thread David Chang
Hello, I am learning Wicket now and feel a bit confused by the new concepts in Wicket regarding how they work together and in what order. The big concepts I am talking about include: Application Session Request RequestCycle RequestCycleProcessor RequestTarget SessionStore Request Response

Re: How Wicket's big concepts/objects work together and in what order?

2009-08-05 Thread David Chang
. -- Jeremy Thomerson http://www.wickettraining.com On Wed, Aug 5, 2009 at 3:41 PM, David Changdavid_q_zh...@yahoo.com wrote: Hello, I am learning Wicket now and feel a bit confused by the new concepts in Wicket regarding how they work together and in what order. The big concepts I

Re: How Wicket's big concepts/objects work together and in what order?

2009-08-05 Thread David Chang
step 1) go to http://www.google.com step 2) in text box type wicket lifecycle without the quotes step 3) hit i am feeling lucky button -igor On Wed, Aug 5, 2009 at 1:56 PM, David Changdavid_q_zh...@yahoo.com wrote: Jeremy, I bought and read that book already. I have a good

Re: How Wicket's big concepts/objects work together and in what order?

2009-08-05 Thread David Chang
the stacktrace and see what's calling what. -- Jeremy Thomerson http://www.wickettraining.com On Wed, Aug 5, 2009 at 4:29 PM, David Changdavid_q_zh...@yahoo.com wrote: Igor, thanks for the tip. I read that wiki page The Life-Cycle of a Wicket Application. The page has useful info

Re: How Wicket's big concepts/objects work together and in what order?

2009-08-05 Thread David Chang
and see what's calling what. -- Jeremy Thomerson http://www.wickettraining.com On Wed, Aug 5, 2009 at 4:29 PM, David Changdavid_q_zh...@yahoo.com wrote: Igor, thanks for the tip. I read that wiki page The Life-Cycle of a Wicket Application. The page has useful info

Re: How do I update my model?

2009-08-05 Thread David Leangen
Ok, thanks for the tip. Looks like all I needed was to call modelChanged() directly on the TextField. Cheers, =David On Aug 5, 2009, at 10:21 PM, Craig McIlwee wrote: If a FormComponent has raw input (FormComponent.hasRawInput() == true) then it will use that value when rendering

WicketNotSerializableException

2009-07-29 Thread David Brown
: org.apache.wicket.util.io.SerializableChecker$WicketNotSerializableException: Unable to serialize class: java.lang.Object I have tried using strategic placement of: transient and static but of no use. Regards, David

Re: WicketNotSerializableException

2009-07-29 Thread David Brown
in a weak attempt to shut up the compiler. Please advise, David. *** package com.technology.pages.myapp; import java.sql.Connection; import java.sql.SQLException; import java.util.ArrayList; import java.util.Iterator; import

Re: WicketTester and org.slf4j.LoggerFactory and org.slf4j.Logger not serializable

2009-07-28 Thread David Brown
Hello Jeremy, thanks for the reply. Painfully obvious now (doh!). David. - Original Message - From: Jeremy Thomerson jer...@wickettraining.com To: users@wicket.apache.org Sent: Monday, July 27, 2009 7:52:57 PM GMT -06:00 US/Canada Central Subject: Re: WicketTester

Re: Twenty Six Wicket Tricks

2009-07-28 Thread David Chang
I would buy the book too. When will it be available? --- On Tue, 7/28/09, Mathias Nilsson wicket.program...@gmail.com wrote: From: Mathias Nilsson wicket.program...@gmail.com Subject: Re: Twenty Six Wicket Tricks To: users@wicket.apache.org Date: Tuesday, July 28, 2009, 1:02 PM +1 I

Re: Twenty Six Wicket Tricks

2009-07-28 Thread David Chang
Why just 26 tricks?More please..! I feel the learning curve for Wicket is kind of tall and more tricks can definitely help new comers in terms of available practical tools and understanding masterful use of Wicket by gurus and ... and ... --- On Tue, 7/28/09, David Chang

the effective ways of wicket models to access database

2009-07-27 Thread David Chang
Hello, I am reading Wicket in Action to learn Wicket. The example on Page 99 is about teaching detachable models. Here it goes: --- public class CheeseModel extends Model { private Long id; private transient Cheese cheese; public CheeseModel() { }

Re: the effective ways of wicket models to access database

2009-07-27 Thread David Chang
(this); (or use salve) Service locator is also a possibility. That is why we left it open :) Martijn On Mon, Jul 27, 2009 at 2:20 PM, David Changdavid_q_zh...@yahoo.com wrote: Hello, I am reading Wicket in Action to learn Wicket. The example on Page 99 is about teaching detachable models. Here

WicketTester and org.slf4j.LoggerFactory and org.slf4j.Logger not serializable

2009-07-27 Thread David Brown
of the logging from my JDBC DAOs to implement WicketTester. Is there some way around this type of issue with serialization? Please advise, David. - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands

Questions about Wicket sessions

2009-07-26 Thread David Chang
Reading Wicket in Action to learn Wicket, I understand that sessions are not thread-safe. I have the following questions about a Wicket app: 1. If I open another tab on the same browser (IE or FF), visitor activities on the same Wicket app are considered in the same session? 2. If I start

Re: Questions about Wicket sessions

2009-07-26 Thread David Chang
Another question: By default, Wicket's SessionStore stores older pages to a temporary directory. It is stored as files, correct? In case of a large website demanding high performance, it should be stored in a high-performance database, correct? Thanks! --- On Sun, 7/26/09, David Chang

<    1   2   3   4   5   6   7   >