<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:www.nabble.com,2006:forum-13974</id>
	<title>Nabble - Apache Wicket</title>
	<updated>2009-07-06T16:15:07Z</updated>
	<link rel="self" type="application/atom+xml" href="http://www.nabble.com/Apache-Wicket-f13974.xml" />
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Apache-Wicket-f13974.html" />
	<subtitle type="html">&lt;a href=&quot;http://wicket.apache.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Apache Wicket&lt;/a&gt; is a Java web application framework that takes simplicity, separation of concerns and ease of development to a whole new level. Wicket pages can be mocked up, previewed and later revised using standard WYSIWYG HTML design tools. You can find Apache Wicket's home &lt;a href=&quot;http://wicket.apache.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;.
&lt;p&gt;
Before posting, please read &lt;a href=&quot;http://www.catb.org/~esr/faqs/smart-questions.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;How to ask questions the smart way&lt;/a&gt; and answer these questions for yourself:
&lt;ul&gt;
&lt;li&gt;Did you check out our &lt;a href=&quot;http://wicketstuff.org/wicket13/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;live examples&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;read our &lt;a href=&quot;http://cwiki.apache.org/WICKET&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;wiki&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;http://www.google.com/search?q=wicket+&amp;lt;your%20query%20here&amp;gt;&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;search using google&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
If these fail to provide an answer, posting to the &lt;a href=&quot;http://www.nabble.com/Wicket---User-f25133.html&quot; target=&quot;_top&quot;&gt;&lt;b&gt;users&lt;/b&gt;&lt;/a&gt; list is appropriate. Be sure to include full stack traces and code. Did we mention that you read &lt;a href=&quot;http://www.catb.org/~esr/faqs/smart-questions.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;How to ask questions the smart way&lt;/a&gt; before posting?
&lt;/p&gt;</subtitle>
	
<entry>
	<id>tag:www.nabble.com,2006:post-24364551</id>
	<title>Re: Nested forms not working in wizard.</title>
	<published>2009-07-06T16:15:07Z</published>
	<updated>2009-07-06T16:15:07Z</updated>
	<author>
		<name>Ned Collyer</name>
	</author>
	<content type="html">The nesting is -
&lt;br&gt;&lt;br&gt;The outer form is inside the wizard, then I have an inner form inside
&lt;br&gt;one of the steps.
&lt;br&gt;&lt;br&gt;Sorry, I cant show you the output of the html - I scrapped the impl I
&lt;br&gt;had am implementing a less &amp;quot;wizardy&amp;quot; wizard.
&lt;br&gt;&lt;br&gt;On Mon, Jul 6, 2009 at 8:36 PM, nino martinez
&lt;br&gt;wael&amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24364551&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nino.martinez.wael@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Is the form nested in the other form in html. I remember vaguely
&lt;br&gt;&amp;gt; something about it needs to be nested, wicket then rewrites it or
&lt;br&gt;&amp;gt; something like that.. How does the resulting html look like?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 2009/7/6 Ned Collyer &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24364551&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ned.collyer@...&lt;/a&gt;&amp;gt;:
&lt;br&gt;&amp;gt;&amp;gt; I am currently running wicket 1.4-rc2
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I have nested forms setup in the wizard.  One of my steps is as follows.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;lt;code&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; public class MyStep1 extends WizardStep {
&lt;br&gt;&amp;gt;&amp;gt;    public MyStep1(final CompoundPropertyModel&amp;lt;Campaign&amp;gt; campaignModel) {
&lt;br&gt;&amp;gt;&amp;gt;        super(&amp;quot;Step 1&amp;quot;, &amp;quot;Wow bananas&amp;quot;);
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;        add(new Form(&amp;quot;form&amp;quot;) {
&lt;br&gt;&amp;gt;&amp;gt;            @Override
&lt;br&gt;&amp;gt;&amp;gt;            protected void onSubmit() {
&lt;br&gt;&amp;gt;&amp;gt;                super.onSubmit();  &amp;lt;--- never fired
&lt;br&gt;&amp;gt;&amp;gt;            }
&lt;br&gt;&amp;gt;&amp;gt;        });
&lt;br&gt;&amp;gt;&amp;gt;    }
&lt;br&gt;&amp;gt;&amp;gt; }
&lt;br&gt;&amp;gt;&amp;gt; &amp;lt;/code&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; The wizard successfully navigates between steps, and validation occurs
&lt;br&gt;&amp;gt;&amp;gt; against any fields in the nested forms.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; The onSubmit of the inner form is never fired - this is ... pretty annoying :)
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Any ideas?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24364551&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24364551&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24364551&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24364551&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24364551&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24364551&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Wicket---User-f25133.html&quot; embed=&quot;fixTarget[25133]&quot; target=&quot;_top&quot; &gt;Wicket - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Nested-forms-not-working-in-wizard.-tp24350545p24364551.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-24363049</id>
	<title>Re: dzone refcard</title>
	<published>2009-07-06T14:22:17Z</published>
	<updated>2009-07-06T14:22:17Z</updated>
	<author>
		<name>kinabalu</name>
	</author>
	<content type="html">Thanks! &amp;nbsp;I'll see if they can add you to the list of reviewers at some &amp;nbsp;
&lt;br&gt;point soon.
&lt;br&gt;&lt;br&gt;Cheers!
&lt;br&gt;&lt;br&gt;On Jul 6, 2009, at 2:02 PM, jWeekend wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; That'll be a nice resource for developers using Wicket, and, save &amp;nbsp;
&lt;br&gt;&amp;gt; jWeekend
&lt;br&gt;&amp;gt; plenty of time preparing one &amp;nbsp;ourselves for dZone, thanks! I'll let &amp;nbsp;
&lt;br&gt;&amp;gt; them
&lt;br&gt;&amp;gt; know to avoid unnecessary confusion about our proposal to create it &amp;nbsp;
&lt;br&gt;&amp;gt; earlier
&lt;br&gt;&amp;gt; today.
&lt;br&gt;&amp;gt; Let me know if you need any extra pairs of eyes to review it.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Regards - Cemal
&lt;br&gt;&amp;gt; jWeekend
&lt;br&gt;&amp;gt; OO &amp; Java Technology
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://jWeekend.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jWeekend.com&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; kinabalu wrote:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I've got one being pushed through the editorial process at DZone &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; right
&lt;br&gt;&amp;gt;&amp;gt; now, should be out very soon.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; On Jul 6, 2009, at 12:48 PM, Nick Heudecker wrote:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Andrew Lombardi created one some time ago. &amp;nbsp;Should still be &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; available.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; On Mon, Jul 6, 2009 at 12:44 PM, Paolo Di Tommaso
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24363049&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;paolo.ditommaso@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; It would be nice
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; -- paolo
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; On Mon, Jul 6, 2009 at 6:07 PM, Luther Baker &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24363049&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;lutherbaker@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Is anyone aware of a wicket
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; refcard&amp;lt;&lt;a href=&quot;http://refcardz.dzone.com/refcardz/core-java-concurrency&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://refcardz.dzone.com/refcardz/core-java-concurrency&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; initiative?
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Thoughts?
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; -Luther
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; -- 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Nick Heudecker
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Professional Wicket Training &amp; Consulting
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://www.systemmobile.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.systemmobile.com&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; To our success!
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Mystic Coders, LLC | Code Magic | www.mysticcoders.com
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; ANDREW LOMBARDI | &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24363049&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;andrew@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; 2321 E 4th St. Ste C-128, Santa Ana CA 92705
&lt;br&gt;&amp;gt;&amp;gt; ofc: 949-528-6480
&lt;br&gt;&amp;gt;&amp;gt; fax: 714-782-6024
&lt;br&gt;&amp;gt;&amp;gt; cell: 714-697-8046
&lt;br&gt;&amp;gt;&amp;gt; linked-in: &lt;a href=&quot;http://www.linkedin.com/in/andrewlombardi&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.linkedin.com/in/andrewlombardi&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; twitter: &lt;a href=&quot;http://www.twitter.com/kinabalu&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.twitter.com/kinabalu&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Eco-Tip: Printing e-mails is usually a waste.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; ========================================================
&lt;br&gt;&amp;gt;&amp;gt; This message is for the named person's use only. You must not,
&lt;br&gt;&amp;gt;&amp;gt; directly or indirectly, use,
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp;disclose, distribute, print, or copy any part of this message if you
&lt;br&gt;&amp;gt;&amp;gt; are not the intended recipient.
&lt;br&gt;&amp;gt;&amp;gt; ========================================================
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -- 
&lt;br&gt;&amp;gt; View this message in context: &lt;a href=&quot;http://www.nabble.com/dzone-refcard-tp24358337p24362753.html&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/dzone-refcard-tp24358337p24362753.html&lt;/a&gt;&lt;br&gt;&amp;gt; Sent from the Wicket - User mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24363049&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24363049&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;To our success!
&lt;br&gt;&lt;br&gt;Mystic Coders, LLC | Code Magic | www.mysticcoders.com
&lt;br&gt;&lt;br&gt;ANDREW LOMBARDI | &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24363049&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;andrew@...&lt;/a&gt;
&lt;br&gt;2321 E 4th St. Ste C-128, Santa Ana CA 92705
&lt;br&gt;ofc: 949-528-6480
&lt;br&gt;fax: 714-782-6024
&lt;br&gt;cell: 714-697-8046
&lt;br&gt;linked-in: &lt;a href=&quot;http://www.linkedin.com/in/andrewlombardi&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.linkedin.com/in/andrewlombardi&lt;/a&gt;&lt;br&gt;twitter: &lt;a href=&quot;http://www.twitter.com/kinabalu&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.twitter.com/kinabalu&lt;/a&gt;&lt;br&gt;&lt;br&gt;Eco-Tip: Printing e-mails is usually a waste.
&lt;br&gt;&lt;br&gt;========================================================
&lt;br&gt;This message is for the named person's use only. You must not, &amp;nbsp;
&lt;br&gt;directly or indirectly, use,
&lt;br&gt;&amp;nbsp; disclose, distribute, print, or copy any part of this message if you &amp;nbsp;
&lt;br&gt;are not the intended recipient.
&lt;br&gt;========================================================
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Wicket---User-f25133.html&quot; embed=&quot;fixTarget[25133]&quot; target=&quot;_top&quot; &gt;Wicket - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/dzone-refcard-tp24358337p24363049.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-24362753</id>
	<title>Re: dzone refcard</title>
	<published>2009-07-06T14:02:00Z</published>
	<updated>2009-07-06T14:02:00Z</updated>
	<author>
		<name>jWeekend</name>
	</author>
	<content type="html">That'll be a nice resource for developers using Wicket, and, save jWeekend plenty of time preparing one &amp;nbsp;ourselves for dZone, thanks! I'll let them know to avoid unnecessary confusion about our proposal to create it earlier today. 
&lt;br&gt;Let me know if you need any extra pairs of eyes to review it.
&lt;br&gt;&lt;br&gt;Regards - Cemal
&lt;br&gt;jWeekend
&lt;br&gt;OO &amp; Java Technology
&lt;br&gt;&lt;a href=&quot;http://jWeekend.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jWeekend.com&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;kinabalu wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;I've got one being pushed through the editorial process at DZone right &amp;nbsp;
&lt;br&gt;now, should be out very soon.
&lt;br&gt;&lt;br&gt;On Jul 6, 2009, at 12:48 PM, Nick Heudecker wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; Andrew Lombardi created one some time ago. &amp;nbsp;Should still be available.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Mon, Jul 6, 2009 at 12:44 PM, Paolo Di Tommaso &amp;lt;paolo.ditommaso@gmail.com
&lt;br&gt;&amp;gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; It would be nice
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; -- paolo
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; On Mon, Jul 6, 2009 at 6:07 PM, Luther Baker &amp;lt;lutherbaker@gmail.com&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Is anyone aware of a wicket
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; refcard&amp;lt;&lt;a href=&quot;http://refcardz.dzone.com/refcardz/core-java-concurrency&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://refcardz.dzone.com/refcardz/core-java-concurrency&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; initiative?
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Thoughts?
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; -Luther
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -- 
&lt;br&gt;&amp;gt; Nick Heudecker
&lt;br&gt;&amp;gt; Professional Wicket Training &amp; Consulting
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.systemmobile.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.systemmobile.com&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;To our success!
&lt;br&gt;&lt;br&gt;Mystic Coders, LLC | Code Magic | www.mysticcoders.com
&lt;br&gt;&lt;br&gt;ANDREW LOMBARDI | andrew@mysticcoders.com
&lt;br&gt;2321 E 4th St. Ste C-128, Santa Ana CA 92705
&lt;br&gt;ofc: 949-528-6480
&lt;br&gt;fax: 714-782-6024
&lt;br&gt;cell: 714-697-8046
&lt;br&gt;linked-in: &lt;a href=&quot;http://www.linkedin.com/in/andrewlombardi&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.linkedin.com/in/andrewlombardi&lt;/a&gt;&lt;br&gt;twitter: &lt;a href=&quot;http://www.twitter.com/kinabalu&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.twitter.com/kinabalu&lt;/a&gt;&lt;br&gt;&lt;br&gt;Eco-Tip: Printing e-mails is usually a waste.
&lt;br&gt;&lt;br&gt;========================================================
&lt;br&gt;This message is for the named person's use only. You must not, &amp;nbsp;
&lt;br&gt;directly or indirectly, use,
&lt;br&gt;&amp;nbsp; disclose, distribute, print, or copy any part of this message if you &amp;nbsp;
&lt;br&gt;are not the intended recipient.
&lt;br&gt;========================================================
&lt;br&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Wicket---User-f25133.html&quot; embed=&quot;fixTarget[25133]&quot; target=&quot;_top&quot; &gt;Wicket - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/dzone-refcard-tp24358337p24362753.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-24362717</id>
	<title>Re: Tim Boudreau doesn't like getModel() -&gt; getDefaultModel()</title>
	<published>2009-07-06T13:58:40Z</published>
	<updated>2009-07-06T13:58:40Z</updated>
	<author>
		<name>ronaldtm</name>
	</author>
	<content type="html">Now I get it, thanks.
&lt;br&gt;&lt;br&gt;Indeed, it's hard to think in a better solution (without ditching generics
&lt;br&gt;altogether).
&lt;br&gt;&lt;br&gt;Tetsuo
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;On Mon, Jul 6, 2009 at 4:19 PM, Matej Knopp &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24362717&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;matej.knopp@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Problem is setDefaultModelObject().
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; If you have setModelObject(Object o) you can not override it in
&lt;br&gt;&amp;gt; subclass and restrict the parameter.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -Matej
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Mon, Jul 6, 2009 at 8:58 PM, tetsuo&amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24362717&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ronald.tetsuo@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt; 'IModel&amp;lt;?&amp;gt; getModel()' instead of 'Object getModel()', and 'IModel&amp;lt;T&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; getModel()' instead of 'T getModel()', sorry.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; And sorry for flooding the mailing list, this is the last one, I promise
&lt;br&gt;&amp;gt; :)
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; On Mon, Jul 6, 2009 at 3:54 PM, tetsuo &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24362717&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ronald.tetsuo@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; What if Component was not generified, and had an 'Object getModel()'
&lt;br&gt;&amp;gt; method
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; instead of 'Object getDefaultModel()', and the components that do
&lt;br&gt;&amp;gt; benefit
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; from generics, simply override the method to return 'T' (then the
&lt;br&gt;&amp;gt; component
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; class would have a &amp;lt;T&amp;gt; type parameter)? The compiler accepts this just
&lt;br&gt;&amp;gt; fine.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Tetsuo
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; On Mon, Jul 6, 2009 at 3:48 PM, tetsuo &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24362717&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ronald.tetsuo@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; I've just read the explanation in a Tim's blog post comment. Oh, well,
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; generics definitely isn't easy to grasp...
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; I myself have observed that my (wicket) code is so much readable
&lt;br&gt;&amp;gt; without
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; most generics declarations. Even when using components that do have
&lt;br&gt;&amp;gt; models
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; (Textfield, for example) I didn't gain anything for adding the angle
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; brackets, since the models in general use reflection (PropertyModel,
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; CompoundPropertyModel, etc.), and don't make any use of the build-time
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; validation at all.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; sigh...
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; Tetsuo
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; On Mon, Jul 6, 2009 at 3:35 PM, tetsuo &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24362717&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ronald.tetsuo@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt; I understand the getModelObject() thing, but I not about the
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt; getDefaultModel(). Why is that?
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt; I've found an e-mail (
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://mail-archives.apache.org/mod_mbox/wicket-dev/200806.mbox/%3C23eb48360806190903y27f3baeaua2db57e39249743d@mail.gmail.com%3E&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mail-archives.apache.org/mod_mbox/wicket-dev/200806.mbox/%3C23eb48360806190903y27f3baeaua2db57e39249743d@...%3E&lt;/a&gt;&lt;br&gt;&amp;gt; )
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt; that states that it may be removed in 1.5.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt; Why rename getModel to getDefaultModel just to take it out later?
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt; Not a critic, just trying to understand.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt; Tetsuo
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt; On Mon, Jul 6, 2009 at 11:18 AM, Jeremy Thomerson &amp;lt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24362717&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jeremy@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; A good overall read, but he also seemed to miss the reason we have
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; getModel**Object**. &amp;nbsp;He doesn't think that's necessary, but misses
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; that there is also getModel (without object) and the word does
&lt;br&gt;&amp;gt; clarify
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; the difference.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Anyway, a good read on overall API design, though. &amp;nbsp;I'd recommend it
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; to others with the caveat that I also disagree with his last part
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; about the rename.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Jeremy Thomerson
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://www.wickettraining.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.wickettraining.com&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; On Mon, Jul 6, 2009 at 8:22 AM, Martijn
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Dashorst&amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24362717&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;martijn.dashorst@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://weblogs.java.net/blog/timboudreau/archive/2009/07/api_design_vs_a_1.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://weblogs.java.net/blog/timboudreau/archive/2009/07/api_design_vs_a_1.html&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt; I guess he doesn't get why we did the rename. This reminds me that
&lt;br&gt;&amp;gt; we
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt; *really* should improve our release docs before we finalize 1.4!!!
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt; Martijn
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt; --
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt; Become a Wicket expert, learn from the best:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://wicketinaction.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wicketinaction.com&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt; Apache Wicket 1.3.5 is released
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt; Get it now: &lt;a href=&quot;http://www.apache.org/dyn/closer.cgi/wicket/1.3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.apache.org/dyn/closer.cgi/wicket/1.3&lt;/a&gt;.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Wicket---Dev-f13977.html&quot; embed=&quot;fixTarget[13977]&quot; target=&quot;_top&quot; &gt;Wicket - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Tim-Boudreau-doesn%27t-like-getModel%28%29--%3E-getDefaultModel%28%29-tp24355352p24362717.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-24362678</id>
	<title>Re: Can I make AjaxFormSubmitBehavior submit raw form data but not  validate it?</title>
	<published>2009-07-06T13:55:49Z</published>
	<updated>2009-07-06T13:55:49Z</updated>
	<author>
		<name>Stefan Malmesjö</name>
	</author>
	<content type="html">Could setting visibility for the FeedbackPanel to false until the form has
&lt;br&gt;been &amp;quot;properly&amp;quot; submitted with a press of a submit button work?
&lt;br&gt;&lt;br&gt;/Stefan
&lt;br&gt;&lt;br&gt;On Mon, Jul 6, 2009 at 8:42 PM, Thierry Leveque &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24362678&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;tleveque@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Any following on that?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Daniel, have you been able to solve your problem? Did you wrote your own
&lt;br&gt;&amp;gt; behavior?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I have the same requirement as you and I am trying to find a quick way to
&lt;br&gt;&amp;gt; solve my problem.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Can someone point me to some examples on how to write my own Ajax behavior?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thierry
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Tue, Jun 2, 2009 at 12:21, Igor Vaynberg &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24362678&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;igor.vaynberg@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; well, if you do not want to *submit* the form then dont use
&lt;br&gt;&amp;gt; &amp;gt; ajaxformSUBMITbehavior :)
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; with little work you can roll your own behavior that does a simple
&lt;br&gt;&amp;gt; &amp;gt; ajax get and appends whatever values you need from formcomponents to
&lt;br&gt;&amp;gt; &amp;gt; the url. that way the form is not submitted and you have access to the
&lt;br&gt;&amp;gt; &amp;gt; raw values.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; -igor
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; On Tue, Jun 2, 2009 at 9:16 AM, dfernandez
&lt;br&gt;&amp;gt; &amp;gt; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24362678&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dfernandez@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Yes, I know it is tricky, but the fact is I don't think I would really
&lt;br&gt;&amp;gt; &amp;gt; need
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; type conversion in this case.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; I will try to explain myself. I have the following UI:
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;|OPERATOR |V|
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;|INPUT1=&amp;quot;aBc&amp;quot; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;| &amp;nbsp; &amp;nbsp; |INPUT2=&amp;quot;DeF&amp;quot; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; ...being &amp;quot;OPERATOR&amp;quot; the DropDownChoice, and both INPUT1 and INPUT2 two
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; TextFields (String TextFields, to be precise). Both INPUT1 and INPUT2
&lt;br&gt;&amp;gt; are
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; required (when they are visible, of course).
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; When I change the value on &amp;quot;OPERATOR&amp;quot;, the UI will change, hiding
&lt;br&gt;&amp;gt; INPUT1
&lt;br&gt;&amp;gt; &amp;gt; and
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; INPUT2 but showing INPUT3, another TextField which should have the same
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; contents that were on INPUT1 before:
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;|OPERATOR |V|
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;|INPUT3=&amp;quot;aBc&amp;quot; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; The problem is that, when changing OPERATOR, I need to read the value
&lt;br&gt;&amp;gt; &amp;gt; from
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; INPUT1 to set it into INPUT3, but if INPUT2 is empty I will receive a
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; validation message telling me that it is required... which it is, but I
&lt;br&gt;&amp;gt; &amp;gt; just
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; want Wicket to validate that when I want to *really* submit the form,
&lt;br&gt;&amp;gt; and
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; not now that I am only changing the operator.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Thanks.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Regards,
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Daniel.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; igor.vaynberg wrote:
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; how are you planning on reading the other values? you cannot access
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; the model so you will have to call getinput(), are you also planning
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; on doing type conversion yourself then?
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; -igor
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; 2009/6/2 Daniel Fernández &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24362678&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dfernandez@...&lt;/a&gt;&amp;gt;:
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt;&amp;gt; Hello,
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt;&amp;gt; I have a form with a DropDownChoice, on which &amp;quot;onchange&amp;quot; event I want
&lt;br&gt;&amp;gt; &amp;gt; to
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt;&amp;gt; update some form components. But I need to read data from other
&lt;br&gt;&amp;gt; fields
&lt;br&gt;&amp;gt; &amp;gt; of
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt;&amp;gt; the form for doing so, and so I added an AjaxFormSubmitBehavior to
&lt;br&gt;&amp;gt; the
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt;&amp;gt; DropDownChoice.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt;&amp;gt; My intention is to read the data from the drop down and from the
&lt;br&gt;&amp;gt; other
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt;&amp;gt; fields, and depending on these data, update some other components...
&lt;br&gt;&amp;gt; &amp;gt; but
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt;&amp;gt; the
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt;&amp;gt; problem is that AjaxFormSubmitBehavior not only sends the form data,
&lt;br&gt;&amp;gt; &amp;gt; but
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt;&amp;gt; also *validates it*, which I don't want (I don't want validation
&lt;br&gt;&amp;gt; &amp;gt; messages
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt;&amp;gt; to
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt;&amp;gt; appear when changing the value of the drop down).
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt;&amp;gt; If it where an AjaxButton I would be able to just
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt;&amp;gt; setDefaultFormProcessing(false), but I don't see anything like that
&lt;br&gt;&amp;gt; in
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt;&amp;gt; AjaxFormSubmitBehavior...
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt;&amp;gt; Is there a way to do this?
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt;&amp;gt; Regards,
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt;&amp;gt; Daniel.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24362678&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24362678&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; --
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; View this message in context:
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/Can-I-make-AjaxFormSubmitBehavior-submit-raw-form-data-but-not--validate-it--tp23830542p23835836.html&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/Can-I-make-AjaxFormSubmitBehavior-submit-raw-form-data-but-not--validate-it--tp23830542p23835836.html&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Sent from the Wicket - User mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24362678&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24362678&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24362678&amp;i=8&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24362678&amp;i=9&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Wicket---User-f25133.html&quot; embed=&quot;fixTarget[25133]&quot; target=&quot;_top&quot; &gt;Wicket - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Can-I-make-AjaxFormSubmitBehavior-submit-raw-form-data-but-not--validate-it--tp23830542p24362678.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-24362614</id>
	<title>Re: dzone refcard</title>
	<published>2009-07-06T13:51:14Z</published>
	<updated>2009-07-06T13:51:14Z</updated>
	<author>
		<name>jWeekend</name>
	</author>
	<content type="html">Luther,
&lt;br&gt;&lt;br&gt;Interesting timing - I contacted dZone today about jWeekend putting together a Wicket &amp;quot;refcardz&amp;quot; for their collection. I'll let you know what they say.
&lt;br&gt;&lt;br&gt;Regards - Cemal
&lt;br&gt;jWeekend
&lt;br&gt;OO &amp; Java Technology
&lt;br&gt;&lt;a href=&quot;http://jWeekend.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jWeekend.com&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;luther.baker wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;Is anyone aware of a wicket
&lt;br&gt;refcard&amp;lt;&lt;a href=&quot;http://refcardz.dzone.com/refcardz/core-java-concurrency&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://refcardz.dzone.com/refcardz/core-java-concurrency&lt;/a&gt;&amp;gt;initiative?
&lt;br&gt;Thoughts?
&lt;br&gt;&lt;br&gt;-Luther
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Wicket---User-f25133.html&quot; embed=&quot;fixTarget[25133]&quot; target=&quot;_top&quot; &gt;Wicket - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/dzone-refcard-tp24358337p24362614.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-24362569</id>
	<title>Re: dzone refcard</title>
	<published>2009-07-06T13:47:23Z</published>
	<updated>2009-07-06T13:47:23Z</updated>
	<author>
		<name>Nick Heudecker</name>
	</author>
	<content type="html">My mistake. &amp;nbsp;I thought that came out a while ago.
&lt;br&gt;&lt;br&gt;On Mon, Jul 6, 2009 at 1:43 PM, Andrew Lombardi &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24362569&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;andrew@...&lt;/a&gt;&amp;gt;wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I've got one being pushed through the editorial process at DZone right now,
&lt;br&gt;&amp;gt; should be out very soon.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Jul 6, 2009, at 12:48 PM, Nick Heudecker wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;Andrew Lombardi created one some time ago. &amp;nbsp;Should still be available.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; On Mon, Jul 6, 2009 at 12:44 PM, Paolo Di Tommaso &amp;lt;
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24362569&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;paolo.ditommaso@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp;It would be nice
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; -- paolo
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; On Mon, Jul 6, 2009 at 6:07 PM, Luther Baker &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24362569&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;lutherbaker@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;nbsp;Is anyone aware of a wicket
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; refcard&amp;lt;&lt;a href=&quot;http://refcardz.dzone.com/refcardz/core-java-concurrency&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://refcardz.dzone.com/refcardz/core-java-concurrency&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; initiative?
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Thoughts?
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; -Luther
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt; Nick Heudecker
&lt;br&gt;&amp;gt;&amp;gt; Professional Wicket Training &amp; Consulting
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://www.systemmobile.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.systemmobile.com&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; To our success!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Mystic Coders, LLC | Code Magic | www.mysticcoders.com
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ANDREW LOMBARDI | &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24362569&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;andrew@...&lt;/a&gt;
&lt;br&gt;&amp;gt; 2321 E 4th St. Ste C-128, Santa Ana CA 92705
&lt;br&gt;&amp;gt; ofc: 949-528-6480
&lt;br&gt;&amp;gt; fax: 714-782-6024
&lt;br&gt;&amp;gt; cell: 714-697-8046
&lt;br&gt;&amp;gt; linked-in: &lt;a href=&quot;http://www.linkedin.com/in/andrewlombardi&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.linkedin.com/in/andrewlombardi&lt;/a&gt;&lt;br&gt;&amp;gt; twitter: &lt;a href=&quot;http://www.twitter.com/kinabalu&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.twitter.com/kinabalu&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Eco-Tip: Printing e-mails is usually a waste.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ========================================================
&lt;br&gt;&amp;gt; This message is for the named person's use only. You must not, directly or
&lt;br&gt;&amp;gt; indirectly, use,
&lt;br&gt;&amp;gt; &amp;nbsp;disclose, distribute, print, or copy any part of this message if you are
&lt;br&gt;&amp;gt; not the intended recipient.
&lt;br&gt;&amp;gt; ========================================================
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Nick Heudecker
&lt;br&gt;Professional Wicket Training &amp; Consulting
&lt;br&gt;&lt;a href=&quot;http://www.systemmobile.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.systemmobile.com&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Wicket---User-f25133.html&quot; embed=&quot;fixTarget[25133]&quot; target=&quot;_top&quot; &gt;Wicket - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/dzone-refcard-tp24358337p24362569.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-24362527</id>
	<title>Re: dzone refcard</title>
	<published>2009-07-06T13:43:34Z</published>
	<updated>2009-07-06T13:43:34Z</updated>
	<author>
		<name>kinabalu</name>
	</author>
	<content type="html">I've got one being pushed through the editorial process at DZone right &amp;nbsp;
&lt;br&gt;now, should be out very soon.
&lt;br&gt;&lt;br&gt;On Jul 6, 2009, at 12:48 PM, Nick Heudecker wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Andrew Lombardi created one some time ago. &amp;nbsp;Should still be available.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Mon, Jul 6, 2009 at 12:44 PM, Paolo Di Tommaso &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24362527&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;paolo.ditommaso@...&lt;/a&gt;
&lt;br&gt;&amp;gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; It would be nice
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; -- paolo
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; On Mon, Jul 6, 2009 at 6:07 PM, Luther Baker &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24362527&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;lutherbaker@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Is anyone aware of a wicket
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; refcard&amp;lt;&lt;a href=&quot;http://refcardz.dzone.com/refcardz/core-java-concurrency&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://refcardz.dzone.com/refcardz/core-java-concurrency&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; initiative?
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Thoughts?
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; -Luther
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -- 
&lt;br&gt;&amp;gt; Nick Heudecker
&lt;br&gt;&amp;gt; Professional Wicket Training &amp; Consulting
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.systemmobile.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.systemmobile.com&lt;/a&gt;&lt;/div&gt;&lt;br&gt;&lt;br&gt;To our success!
&lt;br&gt;&lt;br&gt;Mystic Coders, LLC | Code Magic | www.mysticcoders.com
&lt;br&gt;&lt;br&gt;ANDREW LOMBARDI | &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24362527&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;andrew@...&lt;/a&gt;
&lt;br&gt;2321 E 4th St. Ste C-128, Santa Ana CA 92705
&lt;br&gt;ofc: 949-528-6480
&lt;br&gt;fax: 714-782-6024
&lt;br&gt;cell: 714-697-8046
&lt;br&gt;linked-in: &lt;a href=&quot;http://www.linkedin.com/in/andrewlombardi&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.linkedin.com/in/andrewlombardi&lt;/a&gt;&lt;br&gt;twitter: &lt;a href=&quot;http://www.twitter.com/kinabalu&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.twitter.com/kinabalu&lt;/a&gt;&lt;br&gt;&lt;br&gt;Eco-Tip: Printing e-mails is usually a waste.
&lt;br&gt;&lt;br&gt;========================================================
&lt;br&gt;This message is for the named person's use only. You must not, &amp;nbsp;
&lt;br&gt;directly or indirectly, use,
&lt;br&gt;&amp;nbsp; disclose, distribute, print, or copy any part of this message if you &amp;nbsp;
&lt;br&gt;are not the intended recipient.
&lt;br&gt;========================================================
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Wicket---User-f25133.html&quot; embed=&quot;fixTarget[25133]&quot; target=&quot;_top&quot; &gt;Wicket - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/dzone-refcard-tp24358337p24362527.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-24362438</id>
	<title>Re: How to configure data source for Jetty server?</title>
	<published>2009-07-06T13:38:34Z</published>
	<updated>2009-07-06T13:38:34Z</updated>
	<author>
		<name>igor.vaynberg</name>
	</author>
	<content type="html">&lt;a href=&quot;http://docs.codehaus.org/display/JETTY/JNDI&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://docs.codehaus.org/display/JETTY/JNDI&lt;/a&gt;&lt;br&gt;&lt;br&gt;-igor
&lt;br&gt;&lt;br&gt;On Mon, Jul 6, 2009 at 1:22 PM, Petr Fejfar&amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24362438&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;petr.fejfar@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi all,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; When I've started learning Wicket, I followed configuration described
&lt;br&gt;&amp;gt; in the book Enjoy web dev ...
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Now I'm trying to migrate my project under Maven's management. I seem
&lt;br&gt;&amp;gt; to be almost
&lt;br&gt;&amp;gt; finished except data source configuration in the Tomcat's context file:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;  &amp;lt;Resource
&lt;br&gt;&amp;gt;    name=&amp;quot;jdbc/trackerDataSource&amp;quot;
&lt;br&gt;&amp;gt;    auth=&amp;quot;Container&amp;quot;
&lt;br&gt;&amp;gt;    type=&amp;quot;javax.sql.DataSource&amp;quot;
&lt;br&gt;&amp;gt;    driverClassName=&amp;quot;org.postgresql.Driver&amp;quot;
&lt;br&gt;&amp;gt;    url=&amp;quot;jdbc:postgresql://localhost/tracker&amp;quot;
&lt;br&gt;&amp;gt;    username=&amp;quot;xxx&amp;quot;
&lt;br&gt;&amp;gt;    password=&amp;quot;xxx&amp;quot;
&lt;br&gt;&amp;gt;    maxActive=&amp;quot;20&amp;quot;
&lt;br&gt;&amp;gt;    maxIdle=&amp;quot;8&amp;quot;
&lt;br&gt;&amp;gt;    defaultAutoCommit=&amp;quot;false&amp;quot;
&lt;br&gt;&amp;gt;    defaultTransactionIsolation=&amp;quot;SERIALIZABLE&amp;quot;
&lt;br&gt;&amp;gt;    testOnBorrow=&amp;quot;true&amp;quot;
&lt;br&gt;&amp;gt;    validationQuery=&amp;quot;select 1&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Please, could somebody show me how to achieve
&lt;br&gt;&amp;gt; the same effect in Jetty's configuration?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks, Peter
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24362438&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24362438&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24362438&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24362438&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Wicket---User-f25133.html&quot; embed=&quot;fixTarget[25133]&quot; target=&quot;_top&quot; &gt;Wicket - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/How-to-configure-data-source-for-Jetty-server--tp24362223p24362438.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-24362429</id>
	<title>Model Question</title>
	<published>2009-07-06T13:38:18Z</published>
	<updated>2009-07-06T13:38:18Z</updated>
	<author>
		<name>jpalmer1026</name>
	</author>
	<content type="html">&lt;html&gt;
&lt;!-- BEGIN WEBMAIL STATIONERY --&gt;
&lt;head&gt;&lt;/head&gt;
&lt;body&gt;
&lt;!-- WEBMAIL STATIONERY notheme --&gt;
I have the following code to allow the user to select the date that a report is to be generated for. For some reason, though, whatever date is selected from the textfield, the previous date is being used. For example, if the user inputs 07/06/2009 into the dateTextField, 07/05/2009 is being used. I'm assuming this is because I'm using the wrong model, so any assistance would be greatly appreciated.&lt;br&gt;&lt;br&gt;public class AccountingDashboardPage extends EzdecBaseWebPage {&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; private Date date;&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; public AccountingDashboardPage(Date date) {&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (date == null) {&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; this.date = new Date();&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Form form = new Form(&quot;accountingDashboardForm&quot;, new PropertyModel(this, &quot;date&quot;)) {&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; @Override&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; protected void onSubmit() {&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date d = (Date)getModelObject();&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; setResponsePage(new AccountingDashboardPage(d));&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; };&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; add(form);&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; EzdecDateTextField reportDate = new EzdecDateTextField(&quot;stampDate&quot;, form.getModel());&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; reportDate.setModelValue(new String[]{new SimpleDateFormat(&quot;MM/dd/yyyy&quot;).format(date).toString()});&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; form.add(reportDate);&lt;br&gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;}&lt;br&gt;&lt;br&gt;
&lt;!-- END WEBMAIL STATIONERY --&gt;

&lt;/body&gt;
&lt;/html&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Wicket---User-f25133.html&quot; embed=&quot;fixTarget[25133]&quot; target=&quot;_top&quot; &gt;Wicket - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Model-Question-tp24362429p24362429.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-24362223</id>
	<title>How to configure data source for Jetty server?</title>
	<published>2009-07-06T13:22:44Z</published>
	<updated>2009-07-06T13:22:44Z</updated>
	<author>
		<name>Petr Fejfar-2</name>
	</author>
	<content type="html">Hi all,
&lt;br&gt;&lt;br&gt;When I've started learning Wicket, I followed configuration described
&lt;br&gt;in the book Enjoy web dev ...
&lt;br&gt;&lt;br&gt;Now I'm trying to migrate my project under Maven's management. I seem
&lt;br&gt;to be almost
&lt;br&gt;finished except data source configuration in the Tomcat's context file:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;lt;Resource
&lt;br&gt;&amp;nbsp; &amp;nbsp; name=&amp;quot;jdbc/trackerDataSource&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; auth=&amp;quot;Container&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; type=&amp;quot;javax.sql.DataSource&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; driverClassName=&amp;quot;org.postgresql.Driver&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; url=&amp;quot;jdbc:postgresql://localhost/tracker&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; username=&amp;quot;xxx&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; password=&amp;quot;xxx&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; maxActive=&amp;quot;20&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; maxIdle=&amp;quot;8&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; defaultAutoCommit=&amp;quot;false&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; defaultTransactionIsolation=&amp;quot;SERIALIZABLE&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; testOnBorrow=&amp;quot;true&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; validationQuery=&amp;quot;select 1&amp;quot;/&amp;gt;
&lt;br&gt;&lt;br&gt;Please, could somebody show me how to achieve
&lt;br&gt;the same effect in Jetty's configuration?
&lt;br&gt;&lt;br&gt;&lt;br&gt;Thanks, Peter
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24362223&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24362223&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Wicket---User-f25133.html&quot; embed=&quot;fixTarget[25133]&quot; target=&quot;_top&quot; &gt;Wicket - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/How-to-configure-data-source-for-Jetty-server--tp24362223p24362223.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-24361766</id>
	<title>Re: dzone refcard</title>
	<published>2009-07-06T12:48:53Z</published>
	<updated>2009-07-06T12:48:53Z</updated>
	<author>
		<name>Nick Heudecker</name>
	</author>
	<content type="html">Andrew Lombardi created one some time ago. &amp;nbsp;Should still be available.
&lt;br&gt;&lt;br&gt;On Mon, Jul 6, 2009 at 12:44 PM, Paolo Di Tommaso &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24361766&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;paolo.ditommaso@...&lt;/a&gt;
&lt;br&gt;&amp;gt; wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; It would be nice
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -- paolo
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Mon, Jul 6, 2009 at 6:07 PM, Luther Baker &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24361766&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;lutherbaker@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Is anyone aware of a wicket
&lt;br&gt;&amp;gt; &amp;gt; refcard&amp;lt;&lt;a href=&quot;http://refcardz.dzone.com/refcardz/core-java-concurrency&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://refcardz.dzone.com/refcardz/core-java-concurrency&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;initiative?
&lt;br&gt;&amp;gt; &amp;gt; Thoughts?
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; -Luther
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Nick Heudecker
&lt;br&gt;Professional Wicket Training &amp; Consulting
&lt;br&gt;&lt;a href=&quot;http://www.systemmobile.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.systemmobile.com&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Wicket---User-f25133.html&quot; embed=&quot;fixTarget[25133]&quot; target=&quot;_top&quot; &gt;Wicket - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/dzone-refcard-tp24358337p24361766.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-24361707</id>
	<title>Re: dzone refcard</title>
	<published>2009-07-06T12:44:52Z</published>
	<updated>2009-07-06T12:44:52Z</updated>
	<author>
		<name>paolo di tommaso</name>
	</author>
	<content type="html">It would be nice
&lt;br&gt;&lt;br&gt;-- paolo
&lt;br&gt;&lt;br&gt;On Mon, Jul 6, 2009 at 6:07 PM, Luther Baker &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24361707&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;lutherbaker@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; Is anyone aware of a wicket
&lt;br&gt;&amp;gt; refcard&amp;lt;&lt;a href=&quot;http://refcardz.dzone.com/refcardz/core-java-concurrency&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://refcardz.dzone.com/refcardz/core-java-concurrency&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;initiative?
&lt;br&gt;&amp;gt; Thoughts?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -Luther
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Wicket---User-f25133.html&quot; embed=&quot;fixTarget[25133]&quot; target=&quot;_top&quot; &gt;Wicket - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/dzone-refcard-tp24358337p24361707.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-24361314</id>
	<title>Re: Tim Boudreau doesn't like getModel() -&gt; getDefaultModel()</title>
	<published>2009-07-06T12:19:07Z</published>
	<updated>2009-07-06T12:19:07Z</updated>
	<author>
		<name>Matej Knopp-2</name>
	</author>
	<content type="html">Problem is setDefaultModelObject().
&lt;br&gt;&lt;br&gt;If you have setModelObject(Object o) you can not override it in
&lt;br&gt;subclass and restrict the parameter.
&lt;br&gt;&lt;br&gt;-Matej
&lt;br&gt;&lt;br&gt;On Mon, Jul 6, 2009 at 8:58 PM, tetsuo&amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24361314&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ronald.tetsuo@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; 'IModel&amp;lt;?&amp;gt; getModel()' instead of 'Object getModel()', and 'IModel&amp;lt;T&amp;gt;
&lt;br&gt;&amp;gt; getModel()' instead of 'T getModel()', sorry.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; And sorry for flooding the mailing list, this is the last one, I promise :)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Mon, Jul 6, 2009 at 3:54 PM, tetsuo &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24361314&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ronald.tetsuo@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; What if Component was not generified, and had an 'Object getModel()' method
&lt;br&gt;&amp;gt;&amp;gt; instead of 'Object getDefaultModel()', and the components that do benefit
&lt;br&gt;&amp;gt;&amp;gt; from generics, simply override the method to return 'T' (then the component
&lt;br&gt;&amp;gt;&amp;gt; class would have a &amp;lt;T&amp;gt; type parameter)? The compiler accepts this just fine.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Tetsuo
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; On Mon, Jul 6, 2009 at 3:48 PM, tetsuo &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24361314&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ronald.tetsuo@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; I've just read the explanation in a Tim's blog post comment. Oh, well,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; generics definitely isn't easy to grasp...
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; I myself have observed that my (wicket) code is so much readable without
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; most generics declarations. Even when using components that do have models
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; (Textfield, for example) I didn't gain anything for adding the angle
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; brackets, since the models in general use reflection (PropertyModel,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; CompoundPropertyModel, etc.), and don't make any use of the build-time
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; validation at all.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; sigh...
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Tetsuo
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; On Mon, Jul 6, 2009 at 3:35 PM, tetsuo &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24361314&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ronald.tetsuo@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; I understand the getModelObject() thing, but I not about the
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; getDefaultModel(). Why is that?
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; I've found an e-mail (
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://mail-archives.apache.org/mod_mbox/wicket-dev/200806.mbox/%3C23eb48360806190903y27f3baeaua2db57e39249743d@mail.gmail.com%3E&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mail-archives.apache.org/mod_mbox/wicket-dev/200806.mbox/%3C23eb48360806190903y27f3baeaua2db57e39249743d@...%3E&lt;/a&gt;)
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; that states that it may be removed in 1.5.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Why rename getModel to getDefaultModel just to take it out later?
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Not a critic, just trying to understand.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Tetsuo
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; On Mon, Jul 6, 2009 at 11:18 AM, Jeremy Thomerson &amp;lt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24361314&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jeremy@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; A good overall read, but he also seemed to miss the reason we have
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; getModel**Object**.  He doesn't think that's necessary, but misses
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; that there is also getModel (without object) and the word does clarify
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; the difference.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Anyway, a good read on overall API design, though.  I'd recommend it
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; to others with the caveat that I also disagree with his last part
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; about the rename.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Jeremy Thomerson
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://www.wickettraining.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.wickettraining.com&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; On Mon, Jul 6, 2009 at 8:22 AM, Martijn
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Dashorst&amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24361314&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;martijn.dashorst@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://weblogs.java.net/blog/timboudreau/archive/2009/07/api_design_vs_a_1.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://weblogs.java.net/blog/timboudreau/archive/2009/07/api_design_vs_a_1.html&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt; I guess he doesn't get why we did the rename. This reminds me that we
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt; *really* should improve our release docs before we finalize 1.4!!!
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt; Martijn
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt; Become a Wicket expert, learn from the best:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://wicketinaction.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wicketinaction.com&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt; Apache Wicket 1.3.5 is released
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt; Get it now: &lt;a href=&quot;http://www.apache.org/dyn/closer.cgi/wicket/1.3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.apache.org/dyn/closer.cgi/wicket/1.3&lt;/a&gt;.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Wicket---Dev-f13977.html&quot; embed=&quot;fixTarget[13977]&quot; target=&quot;_top&quot; &gt;Wicket - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Tim-Boudreau-doesn%27t-like-getModel%28%29--%3E-getDefaultModel%28%29-tp24355352p24361314.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-24361027</id>
	<title>Re: Tim Boudreau doesn't like getModel() -&gt; getDefaultModel()</title>
	<published>2009-07-06T11:58:56Z</published>
	<updated>2009-07-06T11:58:56Z</updated>
	<author>
		<name>ronaldtm</name>
	</author>
	<content type="html">'IModel&amp;lt;?&amp;gt; getModel()' instead of 'Object getModel()', and 'IModel&amp;lt;T&amp;gt;
&lt;br&gt;getModel()' instead of 'T getModel()', sorry.
&lt;br&gt;&lt;br&gt;And sorry for flooding the mailing list, this is the last one, I promise :)
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;On Mon, Jul 6, 2009 at 3:54 PM, tetsuo &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24361027&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ronald.tetsuo@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; What if Component was not generified, and had an 'Object getModel()' method
&lt;br&gt;&amp;gt; instead of 'Object getDefaultModel()', and the components that do benefit
&lt;br&gt;&amp;gt; from generics, simply override the method to return 'T' (then the component
&lt;br&gt;&amp;gt; class would have a &amp;lt;T&amp;gt; type parameter)? The compiler accepts this just fine.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Tetsuo
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Mon, Jul 6, 2009 at 3:48 PM, tetsuo &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24361027&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ronald.tetsuo@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I've just read the explanation in a Tim's blog post comment. Oh, well,
&lt;br&gt;&amp;gt;&amp;gt; generics definitely isn't easy to grasp...
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I myself have observed that my (wicket) code is so much readable without
&lt;br&gt;&amp;gt;&amp;gt; most generics declarations. Even when using components that do have models
&lt;br&gt;&amp;gt;&amp;gt; (Textfield, for example) I didn't gain anything for adding the angle
&lt;br&gt;&amp;gt;&amp;gt; brackets, since the models in general use reflection (PropertyModel,
&lt;br&gt;&amp;gt;&amp;gt; CompoundPropertyModel, etc.), and don't make any use of the build-time
&lt;br&gt;&amp;gt;&amp;gt; validation at all.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; sigh...
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Tetsuo
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; On Mon, Jul 6, 2009 at 3:35 PM, tetsuo &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24361027&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ronald.tetsuo@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; I understand the getModelObject() thing, but I not about the
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; getDefaultModel(). Why is that?
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; I've found an e-mail (
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://mail-archives.apache.org/mod_mbox/wicket-dev/200806.mbox/%3C23eb48360806190903y27f3baeaua2db57e39249743d@mail.gmail.com%3E&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mail-archives.apache.org/mod_mbox/wicket-dev/200806.mbox/%3C23eb48360806190903y27f3baeaua2db57e39249743d@...%3E&lt;/a&gt;)
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; that states that it may be removed in 1.5.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Why rename getModel to getDefaultModel just to take it out later?
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Not a critic, just trying to understand.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Tetsuo
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; On Mon, Jul 6, 2009 at 11:18 AM, Jeremy Thomerson &amp;lt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24361027&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jeremy@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; A good overall read, but he also seemed to miss the reason we have
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; getModel**Object**. &amp;nbsp;He doesn't think that's necessary, but misses
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; that there is also getModel (without object) and the word does clarify
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; the difference.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Anyway, a good read on overall API design, though. &amp;nbsp;I'd recommend it
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; to others with the caveat that I also disagree with his last part
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; about the rename.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Jeremy Thomerson
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://www.wickettraining.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.wickettraining.com&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; On Mon, Jul 6, 2009 at 8:22 AM, Martijn
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; Dashorst&amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24361027&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;martijn.dashorst@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://weblogs.java.net/blog/timboudreau/archive/2009/07/api_design_vs_a_1.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://weblogs.java.net/blog/timboudreau/archive/2009/07/api_design_vs_a_1.html&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt; I guess he doesn't get why we did the rename. This reminds me that we
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt; *really* should improve our release docs before we finalize 1.4!!!
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt; Martijn
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt; Become a Wicket expert, learn from the best:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://wicketinaction.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wicketinaction.com&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt; Apache Wicket 1.3.5 is released
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt; Get it now: &lt;a href=&quot;http://www.apache.org/dyn/closer.cgi/wicket/1.3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.apache.org/dyn/closer.cgi/wicket/1.3&lt;/a&gt;.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Wicket---Dev-f13977.html&quot; embed=&quot;fixTarget[13977]&quot; target=&quot;_top&quot; &gt;Wicket - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Tim-Boudreau-doesn%27t-like-getModel%28%29--%3E-getDefaultModel%28%29-tp24355352p24361027.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-24360962</id>
	<title>Re: Tim Boudreau doesn't like getModel() -&gt; getDefaultModel()</title>
	<published>2009-07-06T11:54:35Z</published>
	<updated>2009-07-06T11:54:35Z</updated>
	<author>
		<name>ronaldtm</name>
	</author>
	<content type="html">What if Component was not generified, and had an 'Object getModel()' method
&lt;br&gt;instead of 'Object getDefaultModel()', and the components that do benefit
&lt;br&gt;from generics, simply override the method to return 'T' (then the component
&lt;br&gt;class would have a &amp;lt;T&amp;gt; type parameter)? The compiler accepts this just fine.
&lt;br&gt;&lt;br&gt;Tetsuo
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;On Mon, Jul 6, 2009 at 3:48 PM, tetsuo &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24360962&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ronald.tetsuo@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I've just read the explanation in a Tim's blog post comment. Oh, well,
&lt;br&gt;&amp;gt; generics definitely isn't easy to grasp...
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I myself have observed that my (wicket) code is so much readable without
&lt;br&gt;&amp;gt; most generics declarations. Even when using components that do have models
&lt;br&gt;&amp;gt; (Textfield, for example) I didn't gain anything for adding the angle
&lt;br&gt;&amp;gt; brackets, since the models in general use reflection (PropertyModel,
&lt;br&gt;&amp;gt; CompoundPropertyModel, etc.), and don't make any use of the build-time
&lt;br&gt;&amp;gt; validation at all.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; sigh...
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Tetsuo
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Mon, Jul 6, 2009 at 3:35 PM, tetsuo &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24360962&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ronald.tetsuo@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I understand the getModelObject() thing, but I not about the
&lt;br&gt;&amp;gt;&amp;gt; getDefaultModel(). Why is that?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I've found an e-mail (
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://mail-archives.apache.org/mod_mbox/wicket-dev/200806.mbox/%3C23eb48360806190903y27f3baeaua2db57e39249743d@mail.gmail.com%3E&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mail-archives.apache.org/mod_mbox/wicket-dev/200806.mbox/%3C23eb48360806190903y27f3baeaua2db57e39249743d@...%3E&lt;/a&gt;)
&lt;br&gt;&amp;gt;&amp;gt; that states that it may be removed in 1.5.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Why rename getModel to getDefaultModel just to take it out later?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Not a critic, just trying to understand.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Tetsuo
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; On Mon, Jul 6, 2009 at 11:18 AM, Jeremy Thomerson &amp;lt;
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24360962&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jeremy@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; A good overall read, but he also seemed to miss the reason we have
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; getModel**Object**. &amp;nbsp;He doesn't think that's necessary, but misses
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; that there is also getModel (without object) and the word does clarify
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; the difference.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Anyway, a good read on overall API design, though. &amp;nbsp;I'd recommend it
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; to others with the caveat that I also disagree with his last part
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; about the rename.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Jeremy Thomerson
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://www.wickettraining.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.wickettraining.com&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; On Mon, Jul 6, 2009 at 8:22 AM, Martijn
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Dashorst&amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24360962&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;martijn.dashorst@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://weblogs.java.net/blog/timboudreau/archive/2009/07/api_design_vs_a_1.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://weblogs.java.net/blog/timboudreau/archive/2009/07/api_design_vs_a_1.html&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt; I guess he doesn't get why we did the rename. This reminds me that we
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt; *really* should improve our release docs before we finalize 1.4!!!
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt; Martijn
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt; Become a Wicket expert, learn from the best: &lt;a href=&quot;http://wicketinaction.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wicketinaction.com&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt; Apache Wicket 1.3.5 is released
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt; Get it now: &lt;a href=&quot;http://www.apache.org/dyn/closer.cgi/wicket/1.3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.apache.org/dyn/closer.cgi/wicket/1.3&lt;/a&gt;.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Wicket---Dev-f13977.html&quot; embed=&quot;fixTarget[13977]&quot; target=&quot;_top&quot; &gt;Wicket - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Tim-Boudreau-doesn%27t-like-getModel%28%29--%3E-getDefaultModel%28%29-tp24355352p24360962.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-24360861</id>
	<title>Re: Tim Boudreau doesn't like getModel() -&gt; getDefaultModel()</title>
	<published>2009-07-06T11:48:25Z</published>
	<updated>2009-07-06T11:48:25Z</updated>
	<author>
		<name>ronaldtm</name>
	</author>
	<content type="html">I've just read the explanation in a Tim's blog post comment. Oh, well,
&lt;br&gt;generics definitely isn't easy to grasp...
&lt;br&gt;&lt;br&gt;I myself have observed that my (wicket) code is so much readable without
&lt;br&gt;most generics declarations. Even when using components that do have models
&lt;br&gt;(Textfield, for example) I didn't gain anything for adding the angle
&lt;br&gt;brackets, since the models in general use reflection (PropertyModel,
&lt;br&gt;CompoundPropertyModel, etc.), and don't make any use of the build-time
&lt;br&gt;validation at all.
&lt;br&gt;&lt;br&gt;sigh...
&lt;br&gt;&lt;br&gt;Tetsuo
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;On Mon, Jul 6, 2009 at 3:35 PM, tetsuo &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24360861&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ronald.tetsuo@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I understand the getModelObject() thing, but I not about the
&lt;br&gt;&amp;gt; getDefaultModel(). Why is that?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I've found an e-mail (
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://mail-archives.apache.org/mod_mbox/wicket-dev/200806.mbox/%3C23eb48360806190903y27f3baeaua2db57e39249743d@mail.gmail.com%3E&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mail-archives.apache.org/mod_mbox/wicket-dev/200806.mbox/%3C23eb48360806190903y27f3baeaua2db57e39249743d@...%3E&lt;/a&gt;)
&lt;br&gt;&amp;gt; that states that it may be removed in 1.5.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Why rename getModel to getDefaultModel just to take it out later?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Not a critic, just trying to understand.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Tetsuo
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Mon, Jul 6, 2009 at 11:18 AM, Jeremy Thomerson &amp;lt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24360861&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jeremy@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; A good overall read, but he also seemed to miss the reason we have
&lt;br&gt;&amp;gt;&amp;gt; getModel**Object**. &amp;nbsp;He doesn't think that's necessary, but misses
&lt;br&gt;&amp;gt;&amp;gt; that there is also getModel (without object) and the word does clarify
&lt;br&gt;&amp;gt;&amp;gt; the difference.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Anyway, a good read on overall API design, though. &amp;nbsp;I'd recommend it
&lt;br&gt;&amp;gt;&amp;gt; to others with the caveat that I also disagree with his last part
&lt;br&gt;&amp;gt;&amp;gt; about the rename.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt; Jeremy Thomerson
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://www.wickettraining.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.wickettraining.com&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; On Mon, Jul 6, 2009 at 8:22 AM, Martijn
&lt;br&gt;&amp;gt;&amp;gt; Dashorst&amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24360861&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;martijn.dashorst@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://weblogs.java.net/blog/timboudreau/archive/2009/07/api_design_vs_a_1.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://weblogs.java.net/blog/timboudreau/archive/2009/07/api_design_vs_a_1.html&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; I guess he doesn't get why we did the rename. This reminds me that we
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; *really* should improve our release docs before we finalize 1.4!!!
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; Martijn
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; Become a Wicket expert, learn from the best: &lt;a href=&quot;http://wicketinaction.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wicketinaction.com&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; Apache Wicket 1.3.5 is released
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; Get it now: &lt;a href=&quot;http://www.apache.org/dyn/closer.cgi/wicket/1.3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.apache.org/dyn/closer.cgi/wicket/1.3&lt;/a&gt;.
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Wicket---Dev-f13977.html&quot; embed=&quot;fixTarget[13977]&quot; target=&quot;_top&quot; &gt;Wicket - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Tim-Boudreau-doesn%27t-like-getModel%28%29--%3E-getDefaultModel%28%29-tp24355352p24360861.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-24360776</id>
	<title>Re: Can I make AjaxFormSubmitBehavior submit raw form data but not  validate it?</title>
	<published>2009-07-06T11:42:14Z</published>
	<updated>2009-07-06T11:42:14Z</updated>
	<author>
		<name>tleveque</name>
	</author>
	<content type="html">Any following on that?
&lt;br&gt;&lt;br&gt;Daniel, have you been able to solve your problem? Did you wrote your own
&lt;br&gt;behavior?
&lt;br&gt;&lt;br&gt;I have the same requirement as you and I am trying to find a quick way to
&lt;br&gt;solve my problem.
&lt;br&gt;&lt;br&gt;Can someone point me to some examples on how to write my own Ajax behavior?
&lt;br&gt;&lt;br&gt;Thanks
&lt;br&gt;&lt;br&gt;Thierry
&lt;br&gt;&lt;br&gt;&lt;br&gt;On Tue, Jun 2, 2009 at 12:21, Igor Vaynberg &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24360776&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;igor.vaynberg@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; well, if you do not want to *submit* the form then dont use
&lt;br&gt;&amp;gt; ajaxformSUBMITbehavior :)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; with little work you can roll your own behavior that does a simple
&lt;br&gt;&amp;gt; ajax get and appends whatever values you need from formcomponents to
&lt;br&gt;&amp;gt; the url. that way the form is not submitted and you have access to the
&lt;br&gt;&amp;gt; raw values.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -igor
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Tue, Jun 2, 2009 at 9:16 AM, dfernandez
&lt;br&gt;&amp;gt; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24360776&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dfernandez@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Yes, I know it is tricky, but the fact is I don't think I would really
&lt;br&gt;&amp;gt; need
&lt;br&gt;&amp;gt; &amp;gt; type conversion in this case.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; I will try to explain myself. I have the following UI:
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;|OPERATOR |V|
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;|INPUT1=&amp;quot;aBc&amp;quot; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;| &amp;nbsp; &amp;nbsp; |INPUT2=&amp;quot;DeF&amp;quot; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; ...being &amp;quot;OPERATOR&amp;quot; the DropDownChoice, and both INPUT1 and INPUT2 two
&lt;br&gt;&amp;gt; &amp;gt; TextFields (String TextFields, to be precise). Both INPUT1 and INPUT2 are
&lt;br&gt;&amp;gt; &amp;gt; required (when they are visible, of course).
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; When I change the value on &amp;quot;OPERATOR&amp;quot;, the UI will change, hiding INPUT1
&lt;br&gt;&amp;gt; and
&lt;br&gt;&amp;gt; &amp;gt; INPUT2 but showing INPUT3, another TextField which should have the same
&lt;br&gt;&amp;gt; &amp;gt; contents that were on INPUT1 before:
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;|OPERATOR |V|
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;|INPUT3=&amp;quot;aBc&amp;quot; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;|
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; The problem is that, when changing OPERATOR, I need to read the value
&lt;br&gt;&amp;gt; from
&lt;br&gt;&amp;gt; &amp;gt; INPUT1 to set it into INPUT3, but if INPUT2 is empty I will receive a
&lt;br&gt;&amp;gt; &amp;gt; validation message telling me that it is required... which it is, but I
&lt;br&gt;&amp;gt; just
&lt;br&gt;&amp;gt; &amp;gt; want Wicket to validate that when I want to *really* submit the form, and
&lt;br&gt;&amp;gt; &amp;gt; not now that I am only changing the operator.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Thanks.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Regards,
&lt;br&gt;&amp;gt; &amp;gt; Daniel.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; igor.vaynberg wrote:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; how are you planning on reading the other values? you cannot access
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; the model so you will have to call getinput(), are you also planning
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; on doing type conversion yourself then?
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; -igor
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; 2009/6/2 Daniel Fernández &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24360776&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dfernandez@...&lt;/a&gt;&amp;gt;:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; Hello,
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; I have a form with a DropDownChoice, on which &amp;quot;onchange&amp;quot; event I want
&lt;br&gt;&amp;gt; to
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; update some form components. But I need to read data from other fields
&lt;br&gt;&amp;gt; of
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; the form for doing so, and so I added an AjaxFormSubmitBehavior to the
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; DropDownChoice.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; My intention is to read the data from the drop down and from the other
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; fields, and depending on these data, update some other components...
&lt;br&gt;&amp;gt; but
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; the
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; problem is that AjaxFormSubmitBehavior not only sends the form data,
&lt;br&gt;&amp;gt; but
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; also *validates it*, which I don't want (I don't want validation
&lt;br&gt;&amp;gt; messages
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; to
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; appear when changing the value of the drop down).
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; If it where an AjaxButton I would be able to just
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; setDefaultFormProcessing(false), but I don't see anything like that in
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; AjaxFormSubmitBehavior...
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; Is there a way to do this?
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; Regards,
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; Daniel.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24360776&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24360776&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; --
&lt;br&gt;&amp;gt; &amp;gt; View this message in context:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/Can-I-make-AjaxFormSubmitBehavior-submit-raw-form-data-but-not--validate-it--tp23830542p23835836.html&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/Can-I-make-AjaxFormSubmitBehavior-submit-raw-form-data-but-not--validate-it--tp23830542p23835836.html&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt; Sent from the Wicket - User mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; &amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24360776&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24360776&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24360776&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24360776&amp;i=8&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Wicket---User-f25133.html&quot; embed=&quot;fixTarget[25133]&quot; target=&quot;_top&quot; &gt;Wicket - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Can-I-make-AjaxFormSubmitBehavior-submit-raw-form-data-but-not--validate-it--tp23830542p24360776.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-24360657</id>
	<title>Re: Tim Boudreau doesn't like getModel() -&gt; getDefaultModel()</title>
	<published>2009-07-06T11:35:09Z</published>
	<updated>2009-07-06T11:35:09Z</updated>
	<author>
		<name>ronaldtm</name>
	</author>
	<content type="html">I understand the getModelObject() thing, but I not about the
&lt;br&gt;getDefaultModel(). Why is that?
&lt;br&gt;&lt;br&gt;I've found an e-mail (
&lt;br&gt;&lt;a href=&quot;http://mail-archives.apache.org/mod_mbox/wicket-dev/200806.mbox/%3C23eb48360806190903y27f3baeaua2db57e39249743d@mail.gmail.com%3E&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mail-archives.apache.org/mod_mbox/wicket-dev/200806.mbox/%3C23eb48360806190903y27f3baeaua2db57e39249743d@...%3E&lt;/a&gt;)
&lt;br&gt;that states that it may be removed in 1.5.
&lt;br&gt;&lt;br&gt;Why rename getModel to getDefaultModel just to take it out later?
&lt;br&gt;&lt;br&gt;Not a critic, just trying to understand.
&lt;br&gt;&lt;br&gt;Tetsuo
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;On Mon, Jul 6, 2009 at 11:18 AM, Jeremy Thomerson &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24360657&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jeremy@...&lt;/a&gt;
&lt;br&gt;&amp;gt; wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; A good overall read, but he also seemed to miss the reason we have
&lt;br&gt;&amp;gt; getModel**Object**. &amp;nbsp;He doesn't think that's necessary, but misses
&lt;br&gt;&amp;gt; that there is also getModel (without object) and the word does clarify
&lt;br&gt;&amp;gt; the difference.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Anyway, a good read on overall API design, though. &amp;nbsp;I'd recommend it
&lt;br&gt;&amp;gt; to others with the caveat that I also disagree with his last part
&lt;br&gt;&amp;gt; about the rename.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; Jeremy Thomerson
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.wickettraining.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.wickettraining.com&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Mon, Jul 6, 2009 at 8:22 AM, Martijn
&lt;br&gt;&amp;gt; Dashorst&amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24360657&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;martijn.dashorst@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://weblogs.java.net/blog/timboudreau/archive/2009/07/api_design_vs_a_1.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://weblogs.java.net/blog/timboudreau/archive/2009/07/api_design_vs_a_1.html&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; I guess he doesn't get why we did the rename. This reminds me that we
&lt;br&gt;&amp;gt; &amp;gt; *really* should improve our release docs before we finalize 1.4!!!
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Martijn
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; --
&lt;br&gt;&amp;gt; &amp;gt; Become a Wicket expert, learn from the best: &lt;a href=&quot;http://wicketinaction.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wicketinaction.com&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt; Apache Wicket 1.3.5 is released
&lt;br&gt;&amp;gt; &amp;gt; Get it now: &lt;a href=&quot;http://www.apache.org/dyn/closer.cgi/wicket/1.3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.apache.org/dyn/closer.cgi/wicket/1.3&lt;/a&gt;.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Wicket---Dev-f13977.html&quot; embed=&quot;fixTarget[13977]&quot; target=&quot;_top&quot; &gt;Wicket - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Tim-Boudreau-doesn%27t-like-getModel%28%29--%3E-getDefaultModel%28%29-tp24355352p24360657.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-24358337</id>
	<title>dzone refcard</title>
	<published>2009-07-06T09:07:56Z</published>
	<updated>2009-07-06T09:07:56Z</updated>
	<author>
		<name>luther.baker</name>
	</author>
	<content type="html">Is anyone aware of a wicket
&lt;br&gt;refcard&amp;lt;&lt;a href=&quot;http://refcardz.dzone.com/refcardz/core-java-concurrency&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://refcardz.dzone.com/refcardz/core-java-concurrency&lt;/a&gt;&amp;gt;initiative?
&lt;br&gt;Thoughts?
&lt;br&gt;&lt;br&gt;-Luther
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Wicket---User-f25133.html&quot; embed=&quot;fixTarget[25133]&quot; target=&quot;_top&quot; &gt;Wicket - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/dzone-refcard-tp24358337p24358337.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-24357753</id>
	<title>Re: Tim Boudreau doesn't like getModel() -&gt; getDefaultModel()</title>
	<published>2009-07-06T08:36:57Z</published>
	<updated>2009-07-06T08:36:57Z</updated>
	<author>
		<name>Martin Funk-3</name>
	</author>
	<content type="html">Am 06.07.2009 um 16:18 schrieb Jeremy Thomerson:
&lt;br&gt;&lt;br&gt;&amp;gt; A good overall read, but he also seemed to miss the reason we have
&lt;br&gt;&amp;gt; getModel**Object**. &amp;nbsp;He doesn't think that's necessary, but misses
&lt;br&gt;&amp;gt; that there is also getModel (without object) and the word does clarify
&lt;br&gt;&amp;gt; the difference.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Anyway, a good read on overall API design, though. &amp;nbsp;I'd recommend it
&lt;br&gt;&amp;gt; to others with the caveat that I also disagree with his last part
&lt;br&gt;&amp;gt; about the rename.
&lt;br&gt;I did like the design part too.
&lt;br&gt;Wicket used to be in a lot better shape in that subject, hopefully &amp;nbsp;
&lt;br&gt;time will be found to work on that in 1.5.
&lt;br&gt;&lt;br&gt;mf
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; Jeremy Thomerson
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.wickettraining.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.wickettraining.com&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Mon, Jul 6, 2009 at 8:22 AM, Martijn
&lt;br&gt;&amp;gt; Dashorst&amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24357753&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;martijn.dashorst@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://weblogs.java.net/blog/timboudreau/archive/2009/07/api_design_vs_a_1.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://weblogs.java.net/blog/timboudreau/archive/2009/07/api_design_vs_a_1.html&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I guess he doesn't get why we did the rename. This reminds me that we
&lt;br&gt;&amp;gt;&amp;gt; *really* should improve our release docs before we finalize 1.4!!!
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Martijn
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt; Become a Wicket expert, learn from the best: http:// 
&lt;br&gt;&amp;gt;&amp;gt; wicketinaction.com
&lt;br&gt;&amp;gt;&amp;gt; Apache Wicket 1.3.5 is released
&lt;br&gt;&amp;gt;&amp;gt; Get it now: &lt;a href=&quot;http://www.apache.org/dyn/closer.cgi/wicket/1.3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.apache.org/dyn/closer.cgi/wicket/1.3&lt;/a&gt;.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Wicket---Dev-f13977.html&quot; embed=&quot;fixTarget[13977]&quot; target=&quot;_top&quot; &gt;Wicket - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Tim-Boudreau-doesn%27t-like-getModel%28%29--%3E-getDefaultModel%28%29-tp24355352p24357753.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-24357525</id>
	<title>Re: wicket vs vaadin clarifications</title>
	<published>2009-07-06T08:23:57Z</published>
	<updated>2009-07-06T08:23:57Z</updated>
	<author>
		<name>francisco treacy-2</name>
	</author>
	<content type="html">&amp;gt; Even though the difference in complexity is not that big in example, in
&lt;br&gt;&amp;gt; large applications it really makes a difference.
&lt;br&gt;&lt;br&gt;Yes, the example looks pretty much like Wicket. IMO what will make a
&lt;br&gt;*real* difference is using another language - Java is Java with its
&lt;br&gt;strengths and weaknesses; on the verbosity side there's not much to be
&lt;br&gt;done.
&lt;br&gt;&lt;br&gt;Anyway, thanks for updating your comparison table and I wish you the
&lt;br&gt;best of lucks with your project.
&lt;br&gt;&lt;br&gt;Francisco
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;2009/7/6 Joonas Lehtinen &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24357525&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;joonas.lehtinen@...&lt;/a&gt;&amp;gt;:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hi all,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; If there are any errors in our comparison table, please accept my apologies
&lt;br&gt;&amp;gt; -
&lt;br&gt;&amp;gt; I wrote the original version of the table. I take care that any errors will
&lt;br&gt;&amp;gt; be
&lt;br&gt;&amp;gt; corrected as soon as possible. Just to clarify the situation - I think that
&lt;br&gt;&amp;gt; wicket is a nice framework and really want to give it a fair comparison.
&lt;br&gt;&amp;gt; In my opinion, Vaadin is better for some applications and Wicket for some.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Here are quick comments to your concerns.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; francisco treacy-2 wrote:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Widget diversity &amp; richness:
&lt;br&gt;&amp;gt;&amp;gt; - (I guess richness means Ajax-enabled components?). You put 1 star -
&lt;br&gt;&amp;gt;&amp;gt; but there are plenty of 3rd party Ajax components for Wicket... for
&lt;br&gt;&amp;gt;&amp;gt; instance have a look at wicketstuff.org.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I did this comparison purely by looking at the available demos and comparing
&lt;br&gt;&amp;gt; available ajax-enabled components on
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://wicketstuff.org/wicket13/compref/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wicketstuff.org/wicket13/compref/&lt;/a&gt;&amp;nbsp;that I thought to represent the
&lt;br&gt;&amp;gt; wicket core component set. You can browse through the core widgets (with
&lt;br&gt;&amp;gt; code examples) on
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://demo.vaadin.com/sampler/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://demo.vaadin.com/sampler/&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Unfortunately I did not include wicketstuff - is there a (online or offline)
&lt;br&gt;&amp;gt; demo available? On the other hand - I also left out all the extra Vaadin
&lt;br&gt;&amp;gt; components on &lt;a href=&quot;http://dev.vaadin.com/svn/incubator/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://dev.vaadin.com/svn/incubator/&lt;/a&gt;&amp;nbsp;and from
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://dev.vaadin.com/svn/contrib/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://dev.vaadin.com/svn/contrib/&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; francisco treacy-2 wrote:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; And by the way, &amp;quot;require you
&lt;br&gt;&amp;gt;&amp;gt; to use their AJAX API to implement AJAX functionality&amp;quot; is simply not
&lt;br&gt;&amp;gt;&amp;gt; true. I have created components with jQuery or Mootools where you just
&lt;br&gt;&amp;gt;&amp;gt; drop the jar in your classpath and don't code a single line of
&lt;br&gt;&amp;gt;&amp;gt; JavaScript. Further, you reuse the goodness of inheritance to
&lt;br&gt;&amp;gt;&amp;gt; structure the JavaScript contributions, like &amp;lt;script src=&amp;quot;...&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Please explain - I thought that in order to make a wicket page &amp;quot;ajax
&lt;br&gt;&amp;gt; enabled&amp;quot;, you should create special Ajax callbacks and use Ajax exabled
&lt;br&gt;&amp;gt; components as explained in &lt;a href=&quot;http://wicket.apache.org/exampleajaxcounter.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wicket.apache.org/exampleajaxcounter.html&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; In Vaadin all components and rendering is purely Ajax enabled. The above
&lt;br&gt;&amp;gt; mentioned example re-written in Vaadin would look like:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;  package com.example.counter;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; import com.vaadin.Application;
&lt;br&gt;&amp;gt; import com.vaadin.ui.*;
&lt;br&gt;&amp;gt; import com.vaadin.ui.Button.ClickEvent;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; public class CounterApplication extends Application {
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;        private int counter = 0;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;        public void init() {
&lt;br&gt;&amp;gt;                Window mainWindow = new Window(&amp;quot;Counter Application&amp;quot;);
&lt;br&gt;&amp;gt;                setMainWindow(mainWindow);
&lt;br&gt;&amp;gt;                final Label label = new Label(&amp;quot;Not clicked yet&amp;quot;);
&lt;br&gt;&amp;gt;                mainWindow.addComponent(label);
&lt;br&gt;&amp;gt;                mainWindow.addComponent(new Button(&amp;quot;Click me&amp;quot;, new Button.ClickListener()
&lt;br&gt;&amp;gt; {
&lt;br&gt;&amp;gt;                        public void buttonClick(ClickEvent event) {
&lt;br&gt;&amp;gt;                                label.setValue(&amp;quot;Clicked &amp;quot; + (++counter) + &amp;quot; of times.&amp;quot;);
&lt;br&gt;&amp;gt;                        }
&lt;br&gt;&amp;gt;                }));
&lt;br&gt;&amp;gt;        }
&lt;br&gt;&amp;gt; }
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Even though the difference in complexity is not that big in example, in
&lt;br&gt;&amp;gt; large applications it really makes a difference.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; francisco treacy-2 wrote:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Framework extensions are done in Java:
&lt;br&gt;&amp;gt;&amp;gt; - You should tick it - extensions *are* done in Java
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; By framework extensions here I mean new components/widgets and as the
&lt;br&gt;&amp;gt; comparison is only about RIA, I mean Ajax enabled components. In Vaadin new
&lt;br&gt;&amp;gt; widgets are written in Java - both on server-side and on client-side. Client
&lt;br&gt;&amp;gt; side is compiled with Google Web Toolkit to JavaScript. To read more, see:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://vaadin.com/book/-/page/gwt.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vaadin.com/book/-/page/gwt.html&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; In order to create a new Ajax enabled widget for Wicket, you must write
&lt;br&gt;&amp;gt; client-side with JavaScript and server-side in Java - or am I wrong here?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; francisco treacy-2 wrote:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; No HTML required:
&lt;br&gt;&amp;gt;&amp;gt; - It depends. There are components that don't have associated markup.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; All examples on &lt;a href=&quot;http://wicket.apache.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wicket.apache.org/&lt;/a&gt;&amp;nbsp;include some HTML. In Vaadin there
&lt;br&gt;&amp;gt; is no &amp;quot;page&amp;quot; concept at all. For example, the above &amp;quot;counter&amp;quot; is
&lt;br&gt;&amp;gt; self-contained - you do not need any html or xml to run it. (ok, you must
&lt;br&gt;&amp;gt; configure vaadin servlet in web.xml)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; francisco treacy-2 wrote:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; No XML configuration required:
&lt;br&gt;&amp;gt;&amp;gt; - You should tick it - no XML configuration is required whatsoever. Of
&lt;br&gt;&amp;gt;&amp;gt; course, web.xml but... you know.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Ooops. This is my mistake. Sorry. Will be corrected asap.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; francisco treacy-2 wrote:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Web-page oriented / Framework tuned for building web-pages/sites
&lt;br&gt;&amp;gt;&amp;gt; instead of application user interfaces:
&lt;br&gt;&amp;gt;&amp;gt; - Well, definitions here are quite blurred. But I'd say the sweet
&lt;br&gt;&amp;gt;&amp;gt; point of Wicket is building highly-stateful application UIs.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; You are right - border is really blurred. To draw a line, we should consider
&lt;br&gt;&amp;gt; what is the &amp;quot;normal&amp;quot; operating mode for the framework. Most Wicket
&lt;br&gt;&amp;gt; applications require page changes and most Vaadin applications operate
&lt;br&gt;&amp;gt; within a single page.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; francisco treacy-2 wrote:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Commercial support &amp; guarantees available:
&lt;br&gt;&amp;gt;&amp;gt; - There are various companies that provide support for Wicket
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Can you really buy guarantee for Wicket? Any references?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Best regards,
&lt;br&gt;&amp;gt; Joonas
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; View this message in context: &lt;a href=&quot;http://www.nabble.com/wicket-vs-vaadin-clarifications-tp24353170p24356576.html&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/wicket-vs-vaadin-clarifications-tp24353170p24356576.html&lt;/a&gt;&lt;br&gt;&amp;gt; Sent from the Wicket - User mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24357525&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24357525&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24357525&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24357525&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Wicket---User-f25133.html&quot; embed=&quot;fixTarget[25133]&quot; target=&quot;_top&quot; &gt;Wicket - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/wicket-vs-vaadin-clarifications-tp24353170p24357525.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-24357044</id>
	<title>Re: virues scanning for file upload</title>
	<published>2009-07-06T07:54:55Z</published>
	<updated>2009-07-06T07:54:55Z</updated>
	<author>
		<name>James Carman-3</name>
	</author>
	<content type="html">Well, ClamAV is a free virus scanner for linux. &amp;nbsp;Perhaps you could try to
&lt;br&gt;figure out how to use it?
&lt;br&gt;&lt;br&gt;On Mon, Jul 6, 2009 at 10:47 AM, fachhoch &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24357044&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fachhoch@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; any suggestions on this ?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; fachhoch wrote:
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; What OS? &amp;nbsp; &amp;nbsp; Linux
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; James Carman-3 wrote:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; What OS? &amp;nbsp;Windoze? &amp;nbsp;Linux?
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; On Thu, Jul 2, 2009 at 11:00 AM, tubin gen &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24357044&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;fachhoch@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; we need to implement virues scanning functionality for uploded files
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; and reject &amp;nbsp;in case of virues.Please suggest what choices i have and
&lt;br&gt;&amp;gt; are
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt; there any example ?
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; View this message in context:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/virues-scanning-for-file-upload-tp24308356p24356751.html&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/virues-scanning-for-file-upload-tp24308356p24356751.html&lt;/a&gt;&lt;br&gt;&amp;gt; Sent from the Wicket - User mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24357044&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24357044&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Wicket---User-f25133.html&quot; embed=&quot;fixTarget[25133]&quot; target=&quot;_top&quot; &gt;Wicket - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/virues-scanning-for-file-upload-tp24308356p24357044.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-24356751</id>
	<title>Re: virues scanning for file upload</title>
	<published>2009-07-06T07:47:34Z</published>
	<updated>2009-07-06T07:47:34Z</updated>
	<author>
		<name>fachhoch</name>
	</author>
	<content type="html">any suggestions on this ?
&lt;br&gt;&lt;quote author=&quot;fachhoch&quot;&gt;&lt;br&gt;What OS? &amp;nbsp; &amp;nbsp; Linux
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;James Carman-3 wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;What OS? &amp;nbsp;Windoze? &amp;nbsp;Linux?
&lt;br&gt;&lt;br&gt;On Thu, Jul 2, 2009 at 11:00 AM, tubin gen &amp;lt;fachhoch@gmail.com&amp;gt; wrote:
&lt;br&gt;&lt;br&gt;&amp;gt; we need to implement virues scanning functionality for uploded files
&lt;br&gt;&amp;gt; and reject &amp;nbsp;in case of virues.Please suggest what choices i have and are
&lt;br&gt;&amp;gt; there any example ?
&lt;br&gt;&amp;gt;
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;/quote&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Wicket---User-f25133.html&quot; embed=&quot;fixTarget[25133]&quot; target=&quot;_top&quot; &gt;Wicket - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/virues-scanning-for-file-upload-tp24308356p24356751.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-24356576</id>
	<title>Re: wicket vs vaadin clarifications</title>
	<published>2009-07-06T07:33:35Z</published>
	<updated>2009-07-06T07:33:35Z</updated>
	<author>
		<name>Joonas Lehtinen</name>
	</author>
	<content type="html">Hi all, 
&lt;br&gt;&lt;br&gt;If there are any errors in our comparison table, please accept my apologies - 
&lt;br&gt;I wrote the original version of the table. I take care that any errors will be
&lt;br&gt;corrected as soon as possible. Just to clarify the situation - I think that 
&lt;br&gt;wicket is a nice framework and really want to give it a fair comparison. 
&lt;br&gt;In my opinion, Vaadin is better for some applications and Wicket for some.
&lt;br&gt;&lt;br&gt;Here are quick comments to your concerns.
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;francisco treacy-2 wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;Widget diversity &amp; richness:
&lt;br&gt;- (I guess richness means Ajax-enabled components?). You put 1 star -
&lt;br&gt;but there are plenty of 3rd party Ajax components for Wicket... for
&lt;br&gt;instance have a look at wicketstuff.org. 
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
I did this comparison purely by looking at the available demos and comparing available ajax-enabled components on &lt;a href=&quot;http://wicketstuff.org/wicket13/compref/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wicketstuff.org/wicket13/compref/&lt;/a&gt;&amp;nbsp;that I thought to represent the wicket core component set. You can browse through the core widgets (with code examples) on 
&lt;br&gt;&lt;a href=&quot;http://demo.vaadin.com/sampler/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://demo.vaadin.com/sampler/&lt;/a&gt;&lt;br&gt;&lt;br&gt;Unfortunately I did not include wicketstuff - is there a (online or offline) demo available? On the other hand - I also left out all the extra Vaadin components on &lt;a href=&quot;http://dev.vaadin.com/svn/incubator/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://dev.vaadin.com/svn/incubator/&lt;/a&gt;&amp;nbsp;and from &lt;a href=&quot;http://dev.vaadin.com/svn/contrib/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://dev.vaadin.com/svn/contrib/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;francisco treacy-2 wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;And by the way, &amp;quot;require you
&lt;br&gt;to use their AJAX API to implement AJAX functionality&amp;quot; is simply not
&lt;br&gt;true. I have created components with jQuery or Mootools where you just
&lt;br&gt;drop the jar in your classpath and don't code a single line of
&lt;br&gt;JavaScript. Further, you reuse the goodness of inheritance to
&lt;br&gt;structure the JavaScript contributions, like &amp;lt;script src=&amp;quot;...&amp;quot;/&amp;gt;
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
Please explain - I thought that in order to make a wicket page &amp;quot;ajax enabled&amp;quot;, you should create special Ajax callbacks and use Ajax exabled components as explained in &lt;a href=&quot;http://wicket.apache.org/exampleajaxcounter.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wicket.apache.org/exampleajaxcounter.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;In Vaadin all components and rendering is purely Ajax enabled. The above mentioned example re-written in Vaadin would look like: 
&lt;br&gt;&lt;br&gt;&amp;nbsp;package com.example.counter;
&lt;br&gt;&lt;br&gt;import com.vaadin.Application;
&lt;br&gt;import com.vaadin.ui.*;
&lt;br&gt;import com.vaadin.ui.Button.ClickEvent;
&lt;br&gt;&lt;br&gt;public class CounterApplication extends Application {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; private int counter = 0;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; public void init() {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Window mainWindow = new Window(&amp;quot;Counter Application&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; setMainWindow(mainWindow);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; final Label label = new Label(&amp;quot;Not clicked yet&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; mainWindow.addComponent(label);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; mainWindow.addComponent(new Button(&amp;quot;Click me&amp;quot;, new Button.ClickListener() {			
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; public void buttonClick(ClickEvent event) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; label.setValue(&amp;quot;Clicked &amp;quot; + (++counter) + &amp;quot; of times.&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }));
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;Even though the difference in complexity is not that big in example, in large applications it really makes a difference.
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;francisco treacy-2 wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;Framework extensions are done in Java:
&lt;br&gt;- You should tick it - extensions *are* done in Java
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
By framework extensions here I mean new components/widgets and as the comparison is only about RIA, I mean Ajax enabled components. In Vaadin new widgets are written in Java - both on server-side and on client-side. Client side is compiled with Google Web Toolkit to JavaScript. To read more, see: &lt;a href=&quot;http://vaadin.com/book/-/page/gwt.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vaadin.com/book/-/page/gwt.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;In order to create a new Ajax enabled widget for Wicket, you must write client-side with JavaScript and server-side in Java - or am I wrong here?
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;francisco treacy-2 wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;No HTML required:
&lt;br&gt;- It depends. There are components that don't have associated markup.
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
All examples on &lt;a href=&quot;http://wicket.apache.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wicket.apache.org/&lt;/a&gt;&amp;nbsp;include some HTML. In Vaadin there is no &amp;quot;page&amp;quot; concept at all. For example, the above &amp;quot;counter&amp;quot; is self-contained - you do not need any html or xml to run it. (ok, you must configure vaadin servlet in web.xml)
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;francisco treacy-2 wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;No XML configuration required:
&lt;br&gt;- You should tick it - no XML configuration is required whatsoever. Of
&lt;br&gt;course, web.xml but... you know.
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
Ooops. This is my mistake. Sorry. Will be corrected asap.
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;francisco treacy-2 wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;Web-page oriented / Framework tuned for building web-pages/sites
&lt;br&gt;instead of application user interfaces:
&lt;br&gt;- Well, definitions here are quite blurred. But I'd say the sweet
&lt;br&gt;point of Wicket is building highly-stateful application UIs.
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
You are right - border is really blurred. To draw a line, we should consider what is the &amp;quot;normal&amp;quot; operating mode for the framework. Most Wicket applications require page changes and most Vaadin applications operate within a single page. 
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;francisco treacy-2 wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;Commercial support &amp; guarantees available:
&lt;br&gt;- There are various companies that provide support for Wicket
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
Can you really buy guarantee for Wicket? Any references?
&lt;br&gt;&lt;br&gt;Best regards,
&lt;br&gt;Joonas&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Wicket---User-f25133.html&quot; embed=&quot;fixTarget[25133]&quot; target=&quot;_top&quot; &gt;Wicket - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/wicket-vs-vaadin-clarifications-tp24353170p24356576.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-24356449</id>
	<title>Re: Hot to use BookmarkablePageLinks with a page mounted at several  pathes?</title>
	<published>2009-07-06T07:24:54Z</published>
	<updated>2009-07-06T07:24:54Z</updated>
	<author>
		<name>jthomerson</name>
	</author>
	<content type="html">You might need to create your own url coding strategy that answers for
&lt;br&gt;all the mount paths for that page. &amp;nbsp;The built-in one is only for a
&lt;br&gt;single page at a single path.
&lt;br&gt;&lt;br&gt;Why do you have a single page on multiple paths? &amp;nbsp;Does the page
&lt;br&gt;respond differently based on path? &amp;nbsp;Should the pages on different
&lt;br&gt;paths be subclasses of the main page? &amp;nbsp;Or are you simply trying to
&lt;br&gt;avoid an extra parameter? &amp;nbsp;What about mounting the page on &amp;quot;/path&amp;quot; and
&lt;br&gt;then using an indexed parameter mount so that it is &amp;quot;/path/a/id&amp;quot;?
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Jeremy Thomerson
&lt;br&gt;&lt;a href=&quot;http://www.wickettraining.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.wickettraining.com&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;On Mon, Jul 6, 2009 at 3:15 AM, Oliver Krohne&amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24356449&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;okrohne@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I have one page which is mounted at several pathes with IndexParamUrlCodingStrategy e.g. :
&lt;br&gt;&amp;gt; /pathA
&lt;br&gt;&amp;gt; /pathB
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Now I want to create BookmarkablePageLinks with PageParameters and a specific path of the page, e.g.
&lt;br&gt;&amp;gt; /pathA/id where &amp;quot;id&amp;quot; is the page parameter.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The problems is that rendering url calls BookmarkablePageRequestTargetUrlCodingStrategy.matches
&lt;br&gt;&amp;gt; which only checks the Page class but not the mount path, so the
&lt;br&gt;&amp;gt; url is (in my case) /pathB/id which is wrong. So i tried to use the mount path as
&lt;br&gt;&amp;gt; first parameter and the id as second parameter but this generates:
&lt;br&gt;&amp;gt; /pathB/pathA/id
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; If call the page /pathA/id directly in the browser everthing is okay as the method
&lt;br&gt;&amp;gt; IRequestTargetUrlCodingStrategy.urlCodingStrategyForPath(String path)
&lt;br&gt;&amp;gt; takes care of the mount path.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; So what can I do the specify the mount path + PageParameters in the BookmarkablePageLink?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Extend BookmarkablePageLink and overide onComponentTag ?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks,
&lt;br&gt;&amp;gt; Oliver
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24356449&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24356449&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Wicket---User-f25133.html&quot; embed=&quot;fixTarget[25133]&quot; target=&quot;_top&quot; &gt;Wicket - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Hot-to-use-BookmarkablePageLinks-with-a-page-mounted-at-several-pathes--tp24351416p24356449.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-24356335</id>
	<title>Re: Tim Boudreau doesn't like getModel() -&gt; getDefaultModel()</title>
	<published>2009-07-06T07:18:41Z</published>
	<updated>2009-07-06T07:18:41Z</updated>
	<author>
		<name>jthomerson</name>
	</author>
	<content type="html">A good overall read, but he also seemed to miss the reason we have
&lt;br&gt;getModel**Object**. &amp;nbsp;He doesn't think that's necessary, but misses
&lt;br&gt;that there is also getModel (without object) and the word does clarify
&lt;br&gt;the difference.
&lt;br&gt;&lt;br&gt;Anyway, a good read on overall API design, though. &amp;nbsp;I'd recommend it
&lt;br&gt;to others with the caveat that I also disagree with his last part
&lt;br&gt;about the rename.
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Jeremy Thomerson
&lt;br&gt;&lt;a href=&quot;http://www.wickettraining.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.wickettraining.com&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;On Mon, Jul 6, 2009 at 8:22 AM, Martijn
&lt;br&gt;Dashorst&amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24356335&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;martijn.dashorst@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; &lt;a href=&quot;http://weblogs.java.net/blog/timboudreau/archive/2009/07/api_design_vs_a_1.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://weblogs.java.net/blog/timboudreau/archive/2009/07/api_design_vs_a_1.html&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I guess he doesn't get why we did the rename. This reminds me that we
&lt;br&gt;&amp;gt; *really* should improve our release docs before we finalize 1.4!!!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Martijn
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; Become a Wicket expert, learn from the best: &lt;a href=&quot;http://wicketinaction.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wicketinaction.com&lt;/a&gt;&lt;br&gt;&amp;gt; Apache Wicket 1.3.5 is released
&lt;br&gt;&amp;gt; Get it now: &lt;a href=&quot;http://www.apache.org/dyn/closer.cgi/wicket/1.3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.apache.org/dyn/closer.cgi/wicket/1.3&lt;/a&gt;.
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Wicket---Dev-f13977.html&quot; embed=&quot;fixTarget[13977]&quot; target=&quot;_top&quot; &gt;Wicket - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Tim-Boudreau-doesn%27t-like-getModel%28%29--%3E-getDefaultModel%28%29-tp24355352p24356335.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-24355352</id>
	<title>Tim Boudreau doesn't like getModel() -&gt; getDefaultModel()</title>
	<published>2009-07-06T06:22:50Z</published>
	<updated>2009-07-06T06:22:50Z</updated>
	<author>
		<name>Martijn Dashorst</name>
	</author>
	<content type="html">&lt;a href=&quot;http://weblogs.java.net/blog/timboudreau/archive/2009/07/api_design_vs_a_1.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://weblogs.java.net/blog/timboudreau/archive/2009/07/api_design_vs_a_1.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;I guess he doesn't get why we did the rename. This reminds me that we
&lt;br&gt;*really* should improve our release docs before we finalize 1.4!!!
&lt;br&gt;&lt;br&gt;Martijn
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Become a Wicket expert, learn from the best: &lt;a href=&quot;http://wicketinaction.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wicketinaction.com&lt;/a&gt;&lt;br&gt;Apache Wicket 1.3.5 is released
&lt;br&gt;Get it now: &lt;a href=&quot;http://www.apache.org/dyn/closer.cgi/wicket/1.3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.apache.org/dyn/closer.cgi/wicket/1.3&lt;/a&gt;.
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Wicket---Dev-f13977.html&quot; embed=&quot;fixTarget[13977]&quot; target=&quot;_top&quot; &gt;Wicket - Dev&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Tim-Boudreau-doesn%27t-like-getModel%28%29--%3E-getDefaultModel%28%29-tp24355352p24355352.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-24353490</id>
	<title>n-Level Page Navigation</title>
	<published>2009-07-06T04:01:10Z</published>
	<updated>2009-07-06T04:01:10Z</updated>
	<author>
		<name>idudko</name>
	</author>
	<content type="html">Hi everybody!
&lt;br&gt;&lt;br&gt;I am new to Wicket. And try to write app with n-level menu.
&lt;br&gt;I am found the message of Igor Vaynberg.
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://mail-archives.apache.org/mod_mbox/wicket-users/200805.mbox/%3c23eb48360805082351p3b52963cic0b69f29e201108b@mail.gmail.com%3e&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mail-archives.apache.org/mod_mbox/wicket-users/200805.mbox/%3c23eb48360805082351p3b52963cic0b69f29e201108b@...%3e&lt;/a&gt;&lt;br&gt;&lt;br&gt;I am trying to implement his example, but i am in trouble.
&lt;br&gt;&lt;br&gt;I make some changes to this code example.
&lt;br&gt;My HomePage class extends &amp;nbsp;EntryPage class.
&lt;br&gt;MenuItem class extends Component class.
&lt;br&gt;&lt;br&gt;I am trying to add menuitem from HomePage getMenuItem method,
&lt;br&gt;but always get exception.
&lt;br&gt;&lt;br&gt;Thank you very much for your advices.
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24353490&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24353490&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Wicket---User-f25133.html&quot; embed=&quot;fixTarget[25133]&quot; target=&quot;_top&quot; &gt;Wicket - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/n-Level-Page-Navigation-tp24353490p24353490.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-24353389</id>
	<title>list of components/settings... not working with Ajax ? ==&gt; setGatherExtendedBrowserInfo doesn't work with Ajax</title>
	<published>2009-07-06T03:53:08Z</published>
	<updated>2009-07-06T03:53:08Z</updated>
	<author>
		<name>Joseph Pachod</name>
	</author>
	<content type="html">Hi
&lt;br&gt;&lt;br&gt;When looking at the mailing list archive for some info, I found that &amp;nbsp;
&lt;br&gt;setGatherExtendedBrowserInfo doesn't work with Ajax &amp;nbsp;in this discussion 
&lt;br&gt;: 
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/Odd-behaviour-after-setGatherExtendedBrowserInfo(true)-td15457880.html#a15464392&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/Odd-behaviour-after-setGatherExtendedBrowserInfo(true)-td15457880.html#a15464392&lt;/a&gt;&amp;nbsp; &amp;nbsp;
&lt;br&gt;&lt;br&gt;&lt;br&gt;As I was affected by this issue, it was quite a relief to read that, and 
&lt;br&gt;I've opened an issue for it 
&lt;br&gt;(&lt;a href=&quot;https://issues.apache.org/jira/browse/WICKET-2355&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://issues.apache.org/jira/browse/WICKET-2355&lt;/a&gt;).
&lt;br&gt;&lt;br&gt;However, I now wonder whether there are other components/settings/wicket 
&lt;br&gt;concepts which don't play well with ajax ? Indeed, that 
&lt;br&gt;setGatherExtendedBrowserInfo isn't working with Ajax wasn't even told in 
&lt;br&gt;the javadoc...
&lt;br&gt;&lt;br&gt;thanks in advance
&lt;br&gt;joseph
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24353389&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24353389&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Wicket---User-f25133.html&quot; embed=&quot;fixTarget[25133]&quot; target=&quot;_top&quot; &gt;Wicket - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/list-of-components-settings...-not-working-with-Ajax---%3D%3D%3E-setGatherExtendedBrowserInfo-doesn%27t-work-with-Ajax-tp24353389p24353389.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-24353319</id>
	<title>Re: wicket vs vaadin clarifications</title>
	<published>2009-07-06T03:45:33Z</published>
	<updated>2009-07-06T03:45:33Z</updated>
	<author>
		<name>nino martinez wael</name>
	</author>
	<content type="html">I completely agree. I think somethings missing though:
&lt;br&gt;&lt;br&gt;&amp;nbsp;Backed up by a corporation:
&lt;br&gt;Should be ticket, ASF are a corporation.
&lt;br&gt;&lt;br&gt;&lt;br&gt;The comparison seems biased, or influenced by poor knowledge at least
&lt;br&gt;about wicket. Could it be that vaadin wants to sell their product :)
&lt;br&gt;&lt;br&gt;And one thing more to add to:
&lt;br&gt;&amp;nbsp;Widget diversity &amp; richness
&lt;br&gt;You can out of the box make your components update able by ajax
&lt;br&gt;(without ever touching ajax) just by doing plain java.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;2009/7/6 francisco treacy &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24353319&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;francisco.treacy@...&lt;/a&gt;&amp;gt;:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi all,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; After I tweeted a criticism about &lt;a href=&quot;http://vaadin.com/comparison&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vaadin.com/comparison&lt;/a&gt;&amp;nbsp;table,
&lt;br&gt;&amp;gt; some employees/supporters quickly got back to me asking to elaborate
&lt;br&gt;&amp;gt; on the problems.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I thought it would be good to make it clear and post it to this
&lt;br&gt;&amp;gt; mailing list. Feel free to comment on my points.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Dear Vaadin people:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Widget diversity &amp; richness:
&lt;br&gt;&amp;gt; - (I guess richness means Ajax-enabled components?). You put 1 star -
&lt;br&gt;&amp;gt; but there are plenty of 3rd party Ajax components for Wicket... for
&lt;br&gt;&amp;gt; instance have a look at wicketstuff.org. And by the way, &amp;quot;require you
&lt;br&gt;&amp;gt; to use their AJAX API to implement AJAX functionality&amp;quot; is simply not
&lt;br&gt;&amp;gt; true. I have created components with jQuery or Mootools where you just
&lt;br&gt;&amp;gt; drop the jar in your classpath and don't code a single line of
&lt;br&gt;&amp;gt; JavaScript. Further, you reuse the goodness of inheritance to
&lt;br&gt;&amp;gt; structure the JavaScript contributions, like &amp;lt;script src=&amp;quot;...&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Framework extensions are done in Java:
&lt;br&gt;&amp;gt; - You should tick it - extensions *are* done in Java
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; No HTML required:
&lt;br&gt;&amp;gt; - It depends. There are components that don't have associated markup.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; No XML configuration required:
&lt;br&gt;&amp;gt; - You should tick it - no XML configuration is required whatsoever. Of
&lt;br&gt;&amp;gt; course, web.xml but... you know.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Web-page oriented / Framework tuned for building web-pages/sites
&lt;br&gt;&amp;gt; instead of application user interfaces:
&lt;br&gt;&amp;gt; - Well, definitions here are quite blurred. But I'd say the sweet
&lt;br&gt;&amp;gt; point of Wicket is building highly-stateful application UIs.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Commercial support &amp; guarantees available:
&lt;br&gt;&amp;gt; - There are various companies that provide support for Wicket
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Francisco
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24353319&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24353319&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24353319&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24353319&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Wicket---User-f25133.html&quot; embed=&quot;fixTarget[25133]&quot; target=&quot;_top&quot; &gt;Wicket - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/wicket-vs-vaadin-clarifications-tp24353170p24353319.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-24353189</id>
	<title>Re: Nested forms not working in wizard.</title>
	<published>2009-07-06T03:36:22Z</published>
	<updated>2009-07-06T03:36:22Z</updated>
	<author>
		<name>nino martinez wael</name>
	</author>
	<content type="html">Is the form nested in the other form in html. I remember vaguely
&lt;br&gt;something about it needs to be nested, wicket then rewrites it or
&lt;br&gt;something like that.. How does the resulting html look like?
&lt;br&gt;&lt;br&gt;2009/7/6 Ned Collyer &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24353189&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ned.collyer@...&lt;/a&gt;&amp;gt;:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I am currently running wicket 1.4-rc2
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I have nested forms setup in the wizard.  One of my steps is as follows.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;code&amp;gt;
&lt;br&gt;&amp;gt; public class MyStep1 extends WizardStep {
&lt;br&gt;&amp;gt;    public MyStep1(final CompoundPropertyModel&amp;lt;Campaign&amp;gt; campaignModel) {
&lt;br&gt;&amp;gt;        super(&amp;quot;Step 1&amp;quot;, &amp;quot;Wow bananas&amp;quot;);
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;        add(new Form(&amp;quot;form&amp;quot;) {
&lt;br&gt;&amp;gt;            @Override
&lt;br&gt;&amp;gt;            protected void onSubmit() {
&lt;br&gt;&amp;gt;                super.onSubmit();  &amp;lt;--- never fired
&lt;br&gt;&amp;gt;            }
&lt;br&gt;&amp;gt;        });
&lt;br&gt;&amp;gt;    }
&lt;br&gt;&amp;gt; }
&lt;br&gt;&amp;gt; &amp;lt;/code&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The wizard successfully navigates between steps, and validation occurs
&lt;br&gt;&amp;gt; against any fields in the nested forms.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The onSubmit of the inner form is never fired - this is ... pretty annoying :)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Any ideas?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; ---------------------------------------------------------------------
&lt;br&gt;&amp;gt; To unsubscribe, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24353189&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;&amp;gt; For additional commands, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24353189&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24353189&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24353189&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Wicket---User-f25133.html&quot; embed=&quot;fixTarget[25133]&quot; target=&quot;_top&quot; &gt;Wicket - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Nested-forms-not-working-in-wizard.-tp24350545p24353189.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-24353170</id>
	<title>wicket vs vaadin clarifications</title>
	<published>2009-07-06T03:21:50Z</published>
	<updated>2009-07-06T03:21:50Z</updated>
	<author>
		<name>francisco treacy-2</name>
	</author>
	<content type="html">Hi all,
&lt;br&gt;&lt;br&gt;After I tweeted a criticism about &lt;a href=&quot;http://vaadin.com/comparison&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://vaadin.com/comparison&lt;/a&gt;&amp;nbsp;table,
&lt;br&gt;some employees/supporters quickly got back to me asking to elaborate
&lt;br&gt;on the problems.
&lt;br&gt;&lt;br&gt;I thought it would be good to make it clear and post it to this
&lt;br&gt;mailing list. Feel free to comment on my points.
&lt;br&gt;&lt;br&gt;Dear Vaadin people:
&lt;br&gt;&lt;br&gt;Widget diversity &amp; richness:
&lt;br&gt;- (I guess richness means Ajax-enabled components?). You put 1 star -
&lt;br&gt;but there are plenty of 3rd party Ajax components for Wicket... for
&lt;br&gt;instance have a look at wicketstuff.org. And by the way, &amp;quot;require you
&lt;br&gt;to use their AJAX API to implement AJAX functionality&amp;quot; is simply not
&lt;br&gt;true. I have created components with jQuery or Mootools where you just
&lt;br&gt;drop the jar in your classpath and don't code a single line of
&lt;br&gt;JavaScript. Further, you reuse the goodness of inheritance to
&lt;br&gt;structure the JavaScript contributions, like &amp;lt;script src=&amp;quot;...&amp;quot;/&amp;gt;
&lt;br&gt;&lt;br&gt;Framework extensions are done in Java:
&lt;br&gt;- You should tick it - extensions *are* done in Java
&lt;br&gt;&lt;br&gt;No HTML required:
&lt;br&gt;- It depends. There are components that don't have associated markup.
&lt;br&gt;&lt;br&gt;No XML configuration required:
&lt;br&gt;- You should tick it - no XML configuration is required whatsoever. Of
&lt;br&gt;course, web.xml but... you know.
&lt;br&gt;&lt;br&gt;Web-page oriented / Framework tuned for building web-pages/sites
&lt;br&gt;instead of application user interfaces:
&lt;br&gt;- Well, definitions here are quite blurred. But I'd say the sweet
&lt;br&gt;point of Wicket is building highly-stateful application UIs.
&lt;br&gt;&lt;br&gt;Commercial support &amp; guarantees available:
&lt;br&gt;- There are various companies that provide support for Wicket
&lt;br&gt;&lt;br&gt;&lt;br&gt;Francisco
&lt;br&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24353170&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24353170&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Wicket---User-f25133.html&quot; embed=&quot;fixTarget[25133]&quot; target=&quot;_top&quot; &gt;Wicket - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/wicket-vs-vaadin-clarifications-tp24353170p24353170.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-24351740</id>
	<title>Re: artwork problem while changing background color of liquid canvas</title>
	<published>2009-07-06T01:40:45Z</published>
	<updated>2009-07-06T01:40:45Z</updated>
	<author>
		<name>nino martinez wael</name>
	</author>
	<content type="html">Or the combination of things? I know it's very loose. If you want some
&lt;br&gt;help could you please do a quickstart? I simply dont have time to
&lt;br&gt;setup it all manually..
&lt;br&gt;&lt;br&gt;2009/7/6 nino martinez wael &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24351740&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nino.martinez.wael@...&lt;/a&gt;&amp;gt;:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Yea seems somethings wrong. Im very busy at the moment. But check here:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.ruzee.com/files/liquid-canvas/demo.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ruzee.com/files/liquid-canvas/demo.html&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; It might have something about the lenght of the hex todo?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 2009/7/6 vineet semwal &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24351740&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vineetsemwal1982@...&lt;/a&gt;&amp;gt;:
&lt;br&gt;&amp;gt;&amp;gt; i am trying to fill the background color in liquid canvas component  as
&lt;br&gt;&amp;gt;&amp;gt; below  but it didn't work out .Result is no background color/canvas with a
&lt;br&gt;&amp;gt;&amp;gt; error in
&lt;br&gt;&amp;gt;&amp;gt; firefox that says unknown pugin .
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Graphics g=new Shadow();
&lt;br&gt;&amp;gt;&amp;gt;        g.setChainedGraphics(new Border()).setChainedGraphics(new
&lt;br&gt;&amp;gt;&amp;gt; Gradient());
&lt;br&gt;&amp;gt;&amp;gt;        Fill fill=new Fill(&amp;quot;#ADDFFF&amp;quot;);
&lt;br&gt;&amp;gt;&amp;gt;        LiquidCanvasBehavior lcb=new LiquidCanvasBehavior(fill,g,new
&lt;br&gt;&amp;gt;&amp;gt; RoundedRect());
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; regards,
&lt;br&gt;&amp;gt;&amp;gt; Vineet Semwal
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24351740&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24351740&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Wicket---User-f25133.html&quot; embed=&quot;fixTarget[25133]&quot; target=&quot;_top&quot; &gt;Wicket - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/artwork-problem-while-changing-background-color-of-liquid-canvas-tp24350445p24351740.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-24351731</id>
	<title>Re: artwork problem while changing background color of liquid canvas</title>
	<published>2009-07-06T01:39:49Z</published>
	<updated>2009-07-06T01:39:49Z</updated>
	<author>
		<name>nino martinez wael</name>
	</author>
	<content type="html">Yea seems somethings wrong. Im very busy at the moment. But check here:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.ruzee.com/files/liquid-canvas/demo.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.ruzee.com/files/liquid-canvas/demo.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;It might have something about the lenght of the hex todo?
&lt;br&gt;&lt;br&gt;2009/7/6 vineet semwal &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24351731&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vineetsemwal1982@...&lt;/a&gt;&amp;gt;:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; i am trying to fill the background color in liquid canvas component  as
&lt;br&gt;&amp;gt; below  but it didn't work out .Result is no background color/canvas with a
&lt;br&gt;&amp;gt; error in
&lt;br&gt;&amp;gt; firefox that says unknown pugin .
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Graphics g=new Shadow();
&lt;br&gt;&amp;gt;        g.setChainedGraphics(new Border()).setChainedGraphics(new
&lt;br&gt;&amp;gt; Gradient());
&lt;br&gt;&amp;gt;        Fill fill=new Fill(&amp;quot;#ADDFFF&amp;quot;);
&lt;br&gt;&amp;gt;        LiquidCanvasBehavior lcb=new LiquidCanvasBehavior(fill,g,new
&lt;br&gt;&amp;gt; RoundedRect());
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; regards,
&lt;br&gt;&amp;gt; Vineet Semwal
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;---------------------------------------------------------------------
&lt;br&gt;To unsubscribe, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24351731&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-unsubscribe@...&lt;/a&gt;
&lt;br&gt;For additional commands, e-mail: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=24351731&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;users-help@...&lt;/a&gt;
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/Wicket---User-f25133.html&quot; embed=&quot;fixTarget[25133]&quot; target=&quot;_top&quot; &gt;Wicket - User&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/artwork-problem-while-changing-background-color-of-liquid-canvas-tp24350445p24351731.html" />
</entry>

</feed>
