Re: Page redirect after POST

2009-08-27 Thread Jeremy Thomerson
http://cwiki.apache.org/WICKET/render-strategies.html -- Jeremy Thomerson http://www.wickettraining.com On Thu, Aug 27, 2009 at 11:01 PM, b...@actrix.gen.nz wrote: Hi, With forms on Wicket pages, it appears that on submit which is HTTP POST, Wicket redirects to the same page (the page

Re: How to use session

2009-08-27 Thread Jeremy Thomerson
Why put the variable in the session at all? Do this in your onSubmit: onSubmit() { setResponsePage(new SomePage(this.someVariable)); } -- Jeremy Thomerson http://www.wickettraining.com On Fri, Aug 28, 2009 at 12:17 AM, Gerald Fernandogerald.anto.ferna...@gmail.com wrote: Hello Friends, I

Re: Question about threads inside wicket pages

2009-08-20 Thread Jeremy Thomerson
Right - the session, etc, is available via a ThreadLocal. So, it's not available in a new thread. -- Jeremy Thomerson http://www.wickettraining.com On Wed, Aug 19, 2009 at 11:42 PM, Ashika Umanga Umagiliyaauma...@biggjapan.com wrote: Hi Jeremy, I tried to call Page.info() inside the new

Re: [announce] Wicket 1.4.1

2009-08-20 Thread Jeremy Thomerson
1.4.1 is now available as source in the releases dir. -- Jeremy Thomerson http://www.wickettraining.com On Thu, Aug 20, 2009 at 2:40 AM, Martin Funkmafulaf...@googlemail.com wrote: and leave clean underwear don't think Martijn is up for another one of this: http://www.nabble.com/SVN

Re: Question about threads inside wicket pages

2009-08-19 Thread Jeremy Thomerson
*. But you'll definitely need to do some testing on it to be sure. -- Jeremy Thomerson http://www.wickettraining.com On Wed, Aug 19, 2009 at 3:03 AM, Ashika Umanga Umagiliyaauma...@biggjapan.com wrote: Greetings all, Please refer to image at : http://i26.tinypic.com/11qi6o7.jpg I am going

Re: how to debug Wicket Application

2009-08-19 Thread Jeremy Thomerson
Use the Start.java that came with the Wicket quickstart to start Jetty. From Eclipse, just choose to debug as - java application rather than run as. This will put it in debug mode and you can set breakpoints, etc. -- Jeremy Thomerson http://www.wickettraining.com On Wed, Aug 19, 2009 at 12

Re: Need Wicket Book

2009-08-18 Thread Jeremy Thomerson
I'll second that. Like so many things, documentation is something that you get what you pay for. -- Jeremy Thomerson http://www.wickettraining.com On Tue, Aug 18, 2009 at 1:26 AM, Jeroen Steenbeekej.steenbeeke...@gmail.com wrote: I realize you asked for freely available information sources

Re: Improving maven/wicket deployment process

2009-08-16 Thread Jeremy Thomerson
minutes, including build, upload time, etc. (of course the automated tests take longer on some applications - this is excluding test time) -- Jeremy Thomerson http://www.wickettraining.com On Sat, Aug 15, 2009 at 10:33 PM, Tauren Millstau...@tauren.com wrote: I currently don't have an automated

Re: Wicketstuff releases?

2009-08-13 Thread Jeremy Thomerson
. And I'll try to document the process so that someone else can perform the next one easier. -- Jeremy Thomerson http://www.wickettraining.com On Wed, Aug 12, 2009 at 7:27 PM, Jeremy Thomersonjer...@wickettraining.com wrote: The idea behind the matching release numbers was so that Wicket newbs could

Re: Get all sessions and manipulate them

2009-08-13 Thread Jeremy Thomerson
It'd be easy to create this as an addon project. Wicketstuff? -- Jeremy Thomerson http://www.wickettraining.com On Thu, Aug 13, 2009 at 10:23 AM, Jing Ge (Besitec IT DEHAM)j...@besitec.com wrote: Hello, This is also a very interesting question that I wanna ask. I've googled and found

Re: Wicketstuff releases?

2009-08-12 Thread Jeremy Thomerson
-code (as defoined in the pom) and both projects should use their own unrelated version numbers. wdyt ? When I setup wicketstuff-core, I proposed that we structure it to have identical releases to Wicket. The community agreed. I still think this should be the case. -- Jeremy Thomerson http

Re: Wicketstuff releases?

2009-08-12 Thread Jeremy Thomerson
week. So - anyone volunteering? -- Jeremy Thomerson http://www.wickettraining.com On Wed, Aug 12, 2009 at 1:01 PM, nino martinez waelnino.martinez.w...@gmail.com wrote: Hmm I believe with may way it should be possible todo both.. However I don't much care what the releases are named its

Re: Get all sessions and manipulate them

2009-08-10 Thread Jeremy Thomerson
This question has been asked and answered many times on this mailing list. Please try searching the archives on Nabble. Then let us know if you have questions about one of those implementations. -- Jeremy Thomerson http://www.wickettraining.com On Mon, Aug 10, 2009 at 10:59 PM, uud ashruuda

Re: Firefox, be afraid be very afraid!!!

2009-08-05 Thread Jeremy Thomerson
for every situation. -- Jeremy Thomerson http://www.wickettraining.com On Wed, Aug 5, 2009 at 5:47 AM, nino martinez waelnino.martinez.w...@gmail.com wrote: I prefer firebug .. :) 2009/8/5 John Armstrong siber...@siberian.org: Install the web developers toolkit plugin for firefox. Its a must

Re: [ANN] enhanced wickettester project

2009-08-05 Thread Jeremy Thomerson
audience and greatly simplify the upkeep of your project - so that you won't have to release versions to match Wicket's, etc. All you need to do is create a JIRA with the patch attached and check the box that allows it to be used under the Apache license. -- Jeremy Thomerson http

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

2009-08-05 Thread Jeremy Thomerson
Welcome to Wicket! The best thing you can do is buy Wicket in Action. It has charts that show the interactions between these various components. -- Jeremy Thomerson http://www.wickettraining.com On Wed, Aug 5, 2009 at 3:41 PM, David Changdavid_q_zh...@yahoo.com wrote: Hello, I am learning

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

2009-08-05 Thread Jeremy Thomerson
. onComponentTag, onBeforeRender, onComponentTagBody, etc) and then when it breaks there, walk up the stacktrace and see what's calling what. -- Jeremy Thomerson http://www.wickettraining.com On Wed, Aug 5, 2009 at 4:29 PM, David Changdavid_q_zh...@yahoo.com wrote: Igor, thanks for the tip. I read

Re: Processing GET requests

2009-08-05 Thread Jeremy Thomerson
the page as a bookmarkable page. Then, in your constructor, the query parameters will be available in PageParameters. Use them, do your business. Then I think writing directly to the response would be the easiest way of returning the JSON. -- Jeremy Thomerson http://www.wickettraining.com

Re: Processing GET requests

2009-08-05 Thread Jeremy Thomerson
your needs and use it. I prefer Eclipse. But anytime you ask about preferred IDE, you are bound to get a variety of answers. -- Jeremy Thomerson http://www.wickettraining.com On Wed, Aug 5, 2009 at 7:06 PM, arunguptaarun.gu...@gmail.com wrote: Then I'm not understanding your original point

Re: Processing GET requests

2009-08-05 Thread Jeremy Thomerson
Sure - or deploying quickly to a test server, etc (although it depends on you keeping the console open). -- Jeremy Thomerson http://www.wickettraining.com On Wed, Aug 5, 2009 at 11:13 PM, arunguptaarun.gu...@gmail.com wrote: Ok, that's how I understood as well. But jetty:run is good

Re: SVN URL for Wicket 1.4.0 sources?

2009-08-04 Thread Jeremy Thomerson
http://svn.apache.org/repos/asf/wicket/releases/ -- Jeremy Thomerson http://www.wickettraining.com On Tue, Aug 4, 2009 at 3:20 AM, James Carmanjcar...@carmanconsulting.com wrote: That's not exactly fixing it, Martijn.  The version in the pom still says SNAPSHOT.  What did you do, copy trunk

RE: SVN URL for Wicket 1.4.0 sources?

2009-08-04 Thread Jeremy Thomerson
all the releases are together and not mixed in with endless arbitrary tags. If you are so concerned about it, call for a vote - don't gripe about the committers producing this framework for you. Voting is the Apache way. Jeremy Thomerson http://www.wickettraining.com -- sent from a wireless

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

2009-08-04 Thread Jeremy Thomerson
Nice site. I look forward to looking at it some more. -- Jeremy Thomerson http://www.wickettraining.com On Tue, Aug 4, 2009 at 2:51 PM, Andrew Lombardiand...@mysticcoders.com wrote: I don't know about you guys, but I learn best by examples, a lot of them.  So the team at Mystic decided

Re: Firefox, be afraid be very afraid!!!

2009-08-04 Thread Jeremy Thomerson
Strange - I use FF almost exclusively and have never had this problem. Did you use something like HttpFox or TamperData to look at the headers and see if the expiry headers were coming back correctly? -- Jeremy Thomerson http://www.wickettraining.com On Tue, Aug 4, 2009 at 9:12 PM, Steve

Re: Stateless login form?

2009-07-31 Thread Jeremy Thomerson
You could either: 1 - override isStateless and return true or 2 - make it submit to a bookmarkable page and process the input from the PageParameters -- Jeremy Thomerson http://www.wickettraining.com On Fri, Jul 31, 2009 at 9:07 AM, Martin Makundimartin.maku...@koodaripalvelut.com wrote

Re: Apache Wicket 1.4 takes type safety to the next level

2009-07-31 Thread Jeremy Thomerson
Trying to write all of the announcements and make sure all the documentation on the site is reasonably up-to-date is also a critical part of any release. And it takes a long time. We were all scrambling to try to get it done. -- Jeremy Thomerson http://www.wickettraining.com On Fri, Jul 31

Re: update quickstart page

2009-07-31 Thread Jeremy Thomerson
still works like it does currently, then comment on the JIRA with your results. That would help us make the switch quicker. -- Jeremy Thomerson http://www.wickettraining.com On Fri, Jul 31, 2009 at 10:08 AM, Maarten Bosteelsmbosteels@gmail.com wrote: I see that the page is updated. Thanks

Re: Apache Wicket 1.4 takes type safety to the next level

2009-07-31 Thread Jeremy Thomerson
Thanks - they were updated - but the link wasn't updated. I will move them to that folder to match the link since that is more appropriate than having both anyway. It will take an hour or two to sync. -- Jeremy Thomerson http://www.wickettraining.com On Fri, Jul 31, 2009 at 4:17 PM, Eric

Re: Thanks Wicket-Team!

2009-07-29 Thread Jeremy Thomerson
who teaches Wicket, I'd be interested in seeing what parts stumped you. Good looking site by the way! -- Jeremy Thomerson http://www.wickettraining.com On Wed, Jul 29, 2009 at 2:07 AM, okrohneokro...@yahoo.de wrote: Hi José just me as developer and my co-founder who did the design. Wicket

Re: WicketNotSerializableException

2009-07-29 Thread Jeremy Thomerson
Can you show the code? When you create an anonymous inner class, it gets references to variables that are outside of the declaration. -- Jeremy Thomerson http://www.wickettraining.com On Wed, Jul 29, 2009 at 5:46 PM, David Browndbr...@sexingtechnologies.com wrote: Hello, I have a small show

Re: Twenty Six Wicket Tricks

2009-07-28 Thread Jeremy Thomerson
Why create your own? Submit a patch to fix what you see is wrong with the current one. Everyone wins. -- Jeremy Thomerson http://www.wickettraining.com On Tue, Jul 28, 2009 at 12:20 PM, Vladimir Kkoval...@gmail.com wrote: ModalWindow (being a wicket cheat :) ) deserves a sole book

Re: Twenty Six Wicket Tricks

2009-07-28 Thread Jeremy Thomerson
well thought out answer. thanks. -- Jeremy Thomerson http://www.wickettraining.com On Tue, Jul 28, 2009 at 1:31 PM, Vladimir Kkoval...@gmail.com wrote: Jeremy, from my perspective ModalWindow is a mix of javascript widget that works in non-wicket mode and an wicket wrapper that bridges

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

2009-07-27 Thread Jeremy Thomerson
Your logger instances should either be transient or static - so that they are not serialized. -- Jeremy Thomerson http://www.wickettraining.com On Mon, Jul 27, 2009 at 8:01 PM, David Browndbr...@sexingtechnologies.com wrote: Hello, I have a Wicket 1.4rc4 application with a homegrown set

Re: Help us release 1.4 sooner by helping out with the migration guide

2009-07-24 Thread Jeremy Thomerson
It's in 1.4.0: https://issues.apache.org/jira/browse/WICKET-2350 -- Jeremy Thomerson http://www.wickettraining.com On Fri, Jul 24, 2009 at 7:01 AM, Jörn Zaeffererjoern.zaeffe...@googlemail.com wrote: 2350 cost us a lot of time, getting that fixed would be very very helpful. We have a lot

Re: use a lable in several palces in a page

2009-07-24 Thread Jeremy Thomerson
will be given the same HTML ID). -- Jeremy Thomerson http://www.wickettraining.com On Fri, Jul 24, 2009 at 3:47 PM, tubin genfachh...@gmail.com wrote: I created a label and I wabnt to use this label in seeral places in page , is it allowed , right now I getting exception  [Component id = documentType

Re: Reading Wicket source code

2009-07-24 Thread Jeremy Thomerson
I'd say you'd be best served by using a quickstart application and clicking into code to see what it does. Set breakpoints to see what's happening in a real, live application. Just randomly reading code files won't give you nearly as much benefit. -- Jeremy Thomerson http

Re: Reg next line character in the passed String

2009-07-24 Thread Jeremy Thomerson
You said in your email that you are using span tags. What is the generated HTML? Do you have span tags inside pre tags? Have you tried setRenderBodyOnly(true)? Or just attach the wicket:id to the pre tags directly? -- Jeremy Thomerson http://www.wickettraining.com On Fri, Jul 24, 2009

Re: jWicket -- jQuery with Wicket integration

2009-07-23 Thread Jeremy Thomerson
is the primary focus. -- Jeremy Thomerson http://www.wickettraining.com - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: SerializableChecker flagging transient member variable

2009-07-23 Thread Jeremy Thomerson
I don't know much about that piece, but I'd file this as a JIRA with a stack trace. -- Jeremy Thomerson http://www.wickettraining.com On Thu, Jul 23, 2009 at 12:06 PM, Chris Davischris.da...@hullomail.com wrote: Hi All, I am finding that the SerializableChecker is throwing an exception

Re: Bypassing form validation

2009-07-23 Thread Jeremy Thomerson
setDefaultFormProcessing(false) http://wicket.apache.org/docs/1.4/org/apache/wicket/markup/html/form/Button.html#setDefaultFormProcessing(boolean) -- Jeremy Thomerson http://www.wickettraining.com 2009/7/23 carlson weber filho - Master CIM Informática cwe...@mastercim.com.br: I have a form

Re: Bypassing form validation

2009-07-23 Thread Jeremy Thomerson
Wicket takes care of that for you - you can do it in Wicket. -- Jeremy Thomerson http://www.wickettraining.com 2009/7/23 carlson weber filho - Master CIM Informática cwe...@mastercim.com.br: Isn't invalid to nest forms inside forms? Igor Vaynberg escreveu: you should use embedded forms

Re: jboss 5, jdk 1.6, and wicket 1.3 disk space problem

2009-07-23 Thread Jeremy Thomerson
Google vfs-nested.tmp - returns what looks like some valid results for you. http://www.google.com/search?q=vfs-nested.tmp http://ourcraft.wordpress.com/2009/01/05/plague-of-jar-files/ -- Jeremy Thomerson http://www.wickettraining.com On Thu, Jul 23, 2009 at 2:51 PM, Laura Gforgoodorforawes

Application Period for Travel Assistance to ApacheCon US 2009 Opens Soon

2009-07-22 Thread Jeremy Thomerson
This just in from the ApacheCon Travel Assistance Committee. While you're planning for ApacheCon US this year, don't forget that there will be a one-day training as well as a conference session dedicated to Wicket. --- The Travel Assistance Committee is taking in

Re: should the IRequestLogger implement Serializable?

2009-07-22 Thread Jeremy Thomerson
Isn't the logger sort of a service that does the logging? Your page shouldn't hold on to that. Perhaps it can get it from the application or hold on to something else. -- Jeremy Thomerson http://www.wickettraining.com On Wed, Jul 22, 2009 at 9:38 AM, Jing Ge (Besitec IT DEHAM)j

Re: should the IRequestLogger implement Serializable?

2009-07-22 Thread Jeremy Thomerson
Would you use new ModelUserService(getYourUserService())? It's the same thing - they are services, not data objects. -- Jeremy Thomerson http://www.wickettraining.com On Wed, Jul 22, 2009 at 9:47 AM, Jing Ge (Besitec IT DEHAM)j...@besitec.com wrote: Hello johan, Because I want to use

Re: jWicket -- jQuery with Wicket integration

2009-07-22 Thread Jeremy Thomerson
I didn't read your whole post - but if you just want to code your jquery stuff in jquery, you don't need any integration - why use WicketJQuery? Just add a header contributor that contributes jquery and then write your own JS. -- Jeremy Thomerson http://www.wickettraining.com On Wed, Jul 22

Re: jWicket -- jQuery with Wicket integration

2009-07-22 Thread Jeremy Thomerson
You could write your own tag resolver - seems like it would be fairly easy. Obviously if the component you want is in a repeater or such, your tag will also have to be in the same context so to speak (same repeater, etc). -- Jeremy Thomerson http://www.wickettraining.com On Wed, Jul 22, 2009

Re: Spring and Wicket - is it worth it?

2009-07-22 Thread Jeremy Thomerson
I use it to deploy the same Wicket application to a dozen different sites. Each of them has their own configuration / some with different services, etc. Better than hard-coding a bunch of big switch statements. The same applies for loading dev / staging / production configuration. -- Jeremy

Re: Spring and Wicket - is it worth it?

2009-07-22 Thread Jeremy Thomerson
connections / etc... I wasn't saying that's the only other way - just unfortunately the one a lot choose. -- Jeremy Thomerson http://www.wickettraining.com - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org

Re: Spring and Wicket - is it worth it?

2009-07-22 Thread Jeremy Thomerson
. -- Jeremy Thomerson http://www.wickettraining.com - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: AutoCompleteTextField and IE8, javascript error thrown

2009-07-21 Thread Jeremy Thomerson
cache? -- Jeremy Thomerson http://www.wickettraining.com On Thu, May 28, 2009 at 3:51 AM, Christian G. Ficherachristian.fich...@gmail.com wrote: Dear all, I have a problem using AutoCompleteTextField: when I type something into it, the choices list is not shown, and the following javascript

Re: 1.4 is ready for production?

2009-07-20 Thread Jeremy Thomerson
Yes - there are many users who have been using it since 1.4-rc1 in production. 1.4.0 final is built, waiting on a few things to get finished before calling vote on it. -- Jeremy Thomerson http://www.wickettraining.com On Mon, Jul 20, 2009 at 10:32 AM, Alessandro Vincellia.vince...@gmail.com

Re: 1.4 is ready for production?

2009-07-20 Thread Jeremy Thomerson
Works for me: version `NSS_3.10' not found -- Jeremy Thomerson http://www.wickettraining.com On Mon, Jul 20, 2009 at 5:07 PM, Steamussteam...@gmail.com wrote: M-m-m... May be it is some redirect problems? Try this: http://www.sport-pferde-portal.net/shglobal/home It is the same. I

Re: 1.4 is ready for production?

2009-07-20 Thread Jeremy Thomerson
Oops - sorry - pasted the wrong thing. It does work. I meant to send the URL - but it was just the original URL you sent. -- Jeremy Thomerson http://www.wickettraining.com On Mon, Jul 20, 2009 at 7:51 PM, Jeremy Thomersonjer...@wickettraining.com wrote: Works for me: version `NSS_3.10

Re: memory leak on FeedbackMessages??

2009-07-19 Thread Jeremy Thomerson
I have not run your quickstart, but this sounds peculiar to me. Please create a JIRA (with the quickstart attached) and reply-all here with the issue URL. -- Jeremy Thomerson http://www.wickettraining.com On Sun, Jul 19, 2009 at 9:10 AM, Tsutomu Yanot_y...@me.com wrote: Hi. When I uses

Re: wicketstuff tinymce for Wicket 1.3.5/6

2009-07-17 Thread Jeremy Thomerson
You have to build yourself. Most of the wicketstuff projects were not built with release numbers prior to 1.4 / the wicketstuff-core work. -- Jeremy Thomerson http://www.wickettraining.com On Fri, Jul 17, 2009 at 4:53 AM, Steve Swinsburgsteve.swinsb...@gmail.com wrote: Hi all, What's

Re: Pageable FormComponent

2009-07-16 Thread Jeremy Thomerson
Typically the pattern would be to use a repeating view of some sort (ListView, etc) and inside that repeater, add form components. A list is not a form component - in most cases. An input field is... etc... -- Jeremy Thomerson http://www.wickettraining.com On Thu, Jul 16, 2009 at 5:36 AM

Re: YUI integration (and is BSD License compatible with Apache license)?

2009-07-16 Thread Jeremy Thomerson
there are so many different preferences. So, leave these as extensions projects. Focus on doing what we do well - make a great framework that facilitates the easy creation of rich plugin components. -- Jeremy Thomerson http://www.wickettraining.com On Thu, Jul 16, 2009 at 10:58 AM, Ralf

WicketStuff Developers - please read

2009-07-16 Thread Jeremy Thomerson
and version it however you want to. Thank you!! -- Jeremy Thomerson http://www.wickettraining.com - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Dynamically generated background image

2009-07-14 Thread Jeremy Thomerson
You could mount the resource in your application init method and use the name that you mount it for the resource reference. -- Jeremy Thomerson http://www.wickettraining.com On Tue, Jul 14, 2009 at 1:21 PM, Filippo Bonsignorifilippo.bonsign...@logobject.ch wrote: Hi all, I would like

Re: Portlet

2009-07-14 Thread Jeremy Thomerson
Hola salut goedendag alô ございます http://www.wikihow.com/Say-Hello-in-Different-Languages -- Jeremy Thomerson http://www.wickettraining.com On Tue, Jul 14, 2009 at 5:28 AM, David Skubendavid.sku...@gmail.com wrote: Hello

Re: commit permission wicketstuff jslibraries

2009-07-11 Thread Jeremy Thomerson
Just supply your sourceforge.net username and Igor or someone can give you commit permissions for the whole wicketstuff project. -- Jeremy Thomerson http://www.wickettraining.com 2009/7/11 Uwe Schäfer u...@thomas-daily.de: hi apart from jeremy´s agreement, what would be necessary to get

Re: Validation and component feedback for editable column component in table/list

2009-07-11 Thread Jeremy Thomerson
-with-wicket -- Jeremy Thomerson http://www.wickettraining.com On Sat, Jul 11, 2009 at 1:00 PM, Kenneth NArinoc...@live.se wrote: I am a new user of wicket and I have been experimenting the last days. I am trying to migrate an existing JSP applikation to wicket. I now have a problem

Re: validation of upload form

2009-07-10 Thread Jeremy Thomerson
Validate client-side? -- Jeremy Thomerson http://www.wickettraining.com On Fri, Jul 10, 2009 at 9:08 AM, fm uf...@hotmail.com wrote: hi, I am using simple ajax file upload with UploadProgressBar. I also have a required textarea in the same form. But when I try to upload a file without

Re: Prefill form not model?

2009-07-07 Thread Jeremy Thomerson
or perhaps setValue? -- Jeremy Thomerson http://www.wickettraining.com On Tue, Jul 7, 2009 at 8:57 AM, Martin Makundimartin.maku...@koodaripalvelut.com wrote: Hi! What is the proper way to prefill a wicket form (not poke the model before submit!!!)? I have used a hack:      Field

Wicket Training at US ApacheCon

2009-07-07 Thread Jeremy Thomerson
and receive a discount! To read more about the class and the conference, visit: http://wicketinaction.com/2009/07/wicket-training-at-apachecon-us-2009/ -- Jeremy Thomerson http://www.wickettraining.com - To unsubscribe, e-mail: users

Re: Hot to use BookmarkablePageLinks with a page mounted at several pathes?

2009-07-06 Thread Jeremy Thomerson
paths be subclasses of the main page? Or are you simply trying to avoid an extra parameter? What about mounting the page on /path and then using an indexed parameter mount so that it is /path/a/id? -- Jeremy Thomerson http://www.wickettraining.com On Mon, Jul 6, 2009 at 3:15 AM, Oliver

Re: Wicket and javascript

2009-07-05 Thread Jeremy Thomerson
(); response.renderJavascript(function uploadCompleted() { + callback + }, customUploadCompleted); } }; } -- Jeremy Thomerson http://www.wickettraining.com On Sun, Jul 5, 2009 at 7:57 AM, Mathias Nilssonwicket.program...@gmail.com wrote: Yes but I will have

Re: Wicket and javascript

2009-07-05 Thread Jeremy Thomerson
you got. -- Jeremy Thomerson http://www.wickettraining.com On Sun, Jul 5, 2009 at 12:59 PM, Mathias Nilssonwicket.program...@gmail.com wrote: Nope I get an javascript error when trying this. -- View this message in context: http://www.nabble.com/Wicket-and-javascript-tp24336438p24345368

Re: Wicket and javascript

2009-07-04 Thread Jeremy Thomerson
that you can call that gets the JS callback (IIRC). -- Jeremy Thomerson http://www.wickettraining.com On Sat, Jul 4, 2009 at 2:50 PM, Mathias Nilssonwicket.program...@gmail.com wrote: Let me be a bit more specific. A have a plain form, none wicket that posts to an Iframe. In the onsubmit

RE: Can't add a Form component to an Item in RefreshingView!?

2009-07-03 Thread Jeremy Thomerson
Hard to help you without seeing code / markup. Jeremy Thomerson http://www.wickettraining.com -- sent from a wireless device -Original Message- From: Philip Watson philip.john.wat...@gmail.com Sent: Friday, July 03, 2009 3:23 AM To: users@wicket.apache.org Subject: Can't add a Form

Re: Anybody know what is this situation?

2009-07-03 Thread Jeremy Thomerson
Generally unexplained class issues like this are because the same class gets loaded a second time from a different class loader. I once had it throwing a ClassCastException that ClassA != ClassA. Hard to track down, though. -- Jeremy Thomerson http://www.wickettraining.com On Fri, Jul 3

Re: Looking to implement a table that has it all.

2009-07-02 Thread Jeremy Thomerson
I've never used it, but Matej created the inmethod grid: http://wicketstuff.org/grid-examples/ -- Jeremy Thomerson http://www.wickettraining.com On Thu, Jul 2, 2009 at 1:36 PM, Steve Tarltonstarl...@gmail.com wrote: I am looking to develop a table that has sortable columns, using an ajax

Re: Large internet rich UI Wicket websites?

2009-07-01 Thread Jeremy Thomerson
website use it? Yes, and probably much easier. :) -- Jeremy Thomerson http://www.wickettraining.com On Wed, Jul 1, 2009 at 2:51 PM, David Changdavid_q_zh...@yahoo.com wrote: Martin, I looked at the list and it seems none of them meets what I said about large rich ui Wicket website

Re: Link not rendered in AjaxFallbackDefaultDataTable

2009-07-01 Thread Jeremy Thomerson
Your link doesn't have any text. The model for a link is not for the text of the link, but for you to use in onclick. Although you can easily override onComponentTag (in the link) and response.write(getModelObjectAsString()); -- Jeremy Thomerson http://www.wickettraining.com On Wed, Jul 1

Re: Link not rendered in AjaxFallbackDefaultDataTable

2009-07-01 Thread Jeremy Thomerson
oops - typo -- Jeremy Thomerson http://www.wickettraining.com On Wed, Jul 1, 2009 at 9:15 PM, Igor Vaynbergigor.vaynb...@gmail.com wrote: oncomponenttagbody() is a better place to override if you want to output text, see how Label works or search this list for TextLink -igor On Wed, Jul

Re: Exceptions after Tomcat restart

2009-06-30 Thread Jeremy Thomerson
Igor fixed it: https://issues.apache.org/jira/browse/WICKET-2334 -- Jeremy Thomerson http://www.wickettraining.com On Tue, Jun 30, 2009 at 11:10 AM, Gwyn Evansgwyn.ev...@gmail.com wrote: I've not explictly checked, but I seem to recall something in the forthcoming RC6 release notes

Re: How to get the URL of a dynamically generated image?

2009-06-29 Thread Jeremy Thomerson
Probably best to mount the resource in your app init method so that it has a static path and then use that in your CSS. That, or you can use the text templating to inject the dynamic URL into templated CSS. Then you could just use urlFor to get the URL. -- Jeremy Thomerson http

Re: Slideshow

2009-06-27 Thread Jeremy Thomerson
seconds with the next image from the list. -- Jeremy Thomerson http://www.wickettraining.com On Sat, Jun 27, 2009 at 3:34 PM, Johannes Schneidermaili...@cedarsoft.com wrote: Hi, I want to implement a slide show with wicket. I have many images on the local hard disk - but they are unordered

RE: Migration of wicket-ki-security to wicket-shiro-security

2009-06-26 Thread Jeremy Thomerson
Yes - wicket-core should always be trunk-buildable. IMHO anyway. Jeremy Thomerson http://www.wickettraining.com -- sent from a wireless device -Original Message- From: Martin Funk mafulaf...@googlemail.com Sent: Friday, June 26, 2009 3:10 PM To: users@wicket.apache.org Subject: Re

Re: AjaxFallbackLink Text

2009-06-25 Thread Jeremy Thomerson
Two ways come to mind: - override onComponentTagBody and write it directly to the response - use a wicket:fragment - add the fragment to the column, the link to the fragment, and define the text in the html (or use wicket:message, etc) -- Jeremy Thomerson http://www.wickettraining.com On Thu

Re: WicketFilter Session Information

2009-06-25 Thread Jeremy Thomerson
Session.get() if the parent filter has already initialized it -- Jeremy Thomerson http://www.wickettraining.com On Thu, Jun 25, 2009 at 10:39 AM, Rowe, Richard A.richard.a.r...@saic.com wrote: I want to create a custom filter by extending WicketFilter. How do I get the Wicket Session object

Re: [kind-of-announce] Swit 0.9.0, wicket library for graphics stuff

2009-06-25 Thread Jeremy Thomerson
Hey - that looks cool. I would probably use it. Have you given any thought to getting it into a maven repo? I'm pretty sure we could even put it into the wicket stuff Maven repo. That would sure make it easier to use in most Wicket projects since we use Maven in most of them. -- Jeremy

Re: [kind-of-announce] Swit 0.9.0, wicket library for graphics stuff

2009-06-25 Thread Jeremy Thomerson
Actually - I just looked at it more, and it is VERY cool. Off topic, but can you create buttons that have a small image or icon in them instead of text? I'll definitely be using this. Thanks! -- Jeremy Thomerson http://www.wickettraining.com On Thu, Jun 25, 2009 at 4:12 PM, Jeremy

Re: [kind-of-announce] Swit 0.9.0, wicket library for graphics stuff

2009-06-25 Thread Jeremy Thomerson
Ahh... thanks - missed that! -- Jeremy Thomerson http://www.wickettraining.com On Thu, Jun 25, 2009 at 5:05 PM, Mathias Nilssonwicket.program...@gmail.com wrote: Must say a very nice, useful package. regarding creating buttons with images. yes, this is from the sourcecode

Re: CompoundPropertyModel and nested DataView

2009-06-25 Thread Jeremy Thomerson
The problem in your example is not the CPM, but your data provider - where does it get it's list of items from? -- Jeremy Thomerson http://www.wickettraining.com On Thu, Jun 25, 2009 at 6:07 PM, Hubbard, Bobbybobby.hubb...@garmin.com wrote: Does that mean what I am trying to do is not suited

Re: CompoundPropertyModel and nested DataView

2009-06-25 Thread Jeremy Thomerson
, you'll be better served by understanding models first rather than understanding CPM. -- Jeremy Thomerson http://www.wickettraining.com On Thu, Jun 25, 2009 at 6:22 PM, Jeremy Thomersonjer...@wickettraining.com wrote: The problem in your example is not the CPM, but your data provider - where

RE: [announce] Wicket 1.4-RC5 released

2009-06-24 Thread Jeremy Thomerson
I did update the site - not sure why it hasn't appeared. Jeremy Thomerson http://www.wickettraining.com -- sent from a wireless device -Original Message- From: Johan Compagner jcompag...@gmail.com Sent: Wednesday, June 24, 2009 6:07 AM To: users@wicket.apache.org Subject: Re: [announce

Re: [announce] Wicket 1.4-RC5 released

2009-06-24 Thread Jeremy Thomerson
Any committers know why my updates haven't appeared? I was in a hurry - but my updates are shown within Confluence: http://cwiki.apache.org/confluence/pages/recentlyupdated.action?key=WICKETxSITE Was there some final step I forgot? -- Jeremy Thomerson http://www.wickettraining.com On Wed

Re: [announce] Wicket 1.4-RC5 released

2009-06-24 Thread Jeremy Thomerson
It's out on the Maven repos: http://mirrors.ibiblio.org/pub/mirrors/maven2/org/apache/wicket/wicket/1.4-rc5/ -- Jeremy Thomerson http://www.wickettraining.com On Wed, Jun 24, 2009 at 11:57 AM, Igor Vaynbergigor.vaynb...@gmail.com wrote: as far as i know there is a sync that happens every

Re: [announce] Wicket 1.4-RC5 released

2009-06-24 Thread Jeremy Thomerson
How long does that take to go into effect? It's not out there yet. Thanks! -- Jeremy Thomerson http://www.wickettraining.com On Wed, Jun 24, 2009 at 2:42 PM, Martijn Dashorstmartijn.dasho...@gmail.com wrote: I've exported the whole space. I think infra might be doing some stuff

Re: Page Expire

2009-06-23 Thread Jeremy Thomerson
Have you checked your logs to see if there are serialization errors? -- Jeremy Thomerson http://www.wickettraining.com On Tue, Jun 23, 2009 at 5:09 AM, srinivassrinivas.r...@sifycorp.com wrote: Hi, I am not asking about the session-timeout , i have given session-timeout as 30 mins

Re: Call to action: find and fix errata in 1.4 JavaDoc

2009-06-23 Thread Jeremy Thomerson
Just add comments (and / or patches) to that JIRA issue. All of the most common components would be the biggest area where there are likely changes. -- Jeremy Thomerson http://www.wickettraining.com On Tue, Jun 23, 2009 at 8:40 AM, Vasu Srinivasanvasy...@gmail.com wrote: I'm willing to help

Re: Mutiple select DropDownChoice component

2009-06-23 Thread Jeremy Thomerson
I think you need to look at the select component rather than DDC. -- Jeremy Thomerson http://www.wickettraining.com On Tue, Jun 23, 2009 at 9:49 AM, m...@jumpingbean.co.za wrote: Hi all, I am looking for info on how to handle a multi-select dropdownchoice component. Does the ModelObject

Re: Apply Decorator Pattern to Panels

2009-06-23 Thread Jeremy Thomerson
they typically deal more with markup than behavior. Of course, in your original email, you alluded to wanting to decorate markup, not behavior. So, please explain your needs. There are indeed quite a few ways to apply this pattern within Wicket. -- Jeremy Thomerson http://www.wickettraining.com

RE: AjaxSubmitLink

2009-06-19 Thread Jeremy Thomerson
Call setOutputMarkupPlaceholder(true) That's not the correct name for the method, but it's close enough - even Googling for your error text will probably give you the answer. Jeremy Thomerson http://www.wickettraining.com -- sent from a wireless device -Original Message- From

RE: AjaxSubmitLink

2009-06-19 Thread Jeremy Thomerson
That's not the problem. The problem is that setVisible(false) was called - so that element isn't present on the rendered page at all. He needs to call the method that forces a placeholder to be rendered. Jeremy Thomerson http://www.wickettraining.com -- sent from a wireless device

RE: [announce] Wicket 1.4-RC5 released

2009-06-19 Thread Jeremy Thomerson
There's some discussion of the need for an rc6 to include a couple of bug fixes that went in this week after rc5 was cut. Bummer!! Jeremy Thomerson http://www.wickettraining.com -- sent from a wireless device -Original Message- From: Paul Szulc paul.sz...@gmail.com Sent: Friday, June

[announce] Wicket 1.4-RC5 released

2009-06-18 Thread Jeremy Thomerson
The release has been signed by Jeremy Thomerson, your release manager for today. The public key can be found in the KEYS file in the download area. Download the KEYS file only from the Apache website. http://www.apache.org/dist/wicket/1.4-rc5/KEYS Instructions on how to validate the release can

Re: ResourceReference not locale aware?

2009-06-18 Thread Jeremy Thomerson
Possible, but hard to believe that no one else has reported. Could you create a quickstart and attach it to a JIRA issue, then post the issue number back to this thread so that we can look into it? Thanks! -- Jeremy Thomerson http://www.wickettraining.com On Wed, Jun 17, 2009 at 9:34 AM

<    4   5   6   7   8   9   10   11   12   13   >