Re: nested forms onSubmit

2010-01-31 Thread Martijn Dashorst
VisitChildren(Form.class, ) Martijn On Friday, January 29, 2010, Dave Kallstrom dave.kallst...@gmail.com wrote: Hi, Is there anyway to notify nested forms that they are being submitted?  The onSubmit method of nested forms do not get called when the parent form is submitted. I tried

FeedbackMessage Localization

2010-01-31 Thread Marek Šabo
Hi all, I was wondering, is there a way to localize messages comming from info() and error() form methods via property files? I could do it via session logic but I'm interested in other ways. Regards, -- Marek Šabo - To

Re: FeedbackMessage Localization

2010-01-31 Thread Andrew Lombardi
You could use a StringResourceModel or ResourceModel and just grab the object that results On Jan 31, 2010, at 6:12 AM, Marek Šabo wrote: Hi all, I was wondering, is there a way to localize messages comming from info() and error() form methods via property files? I could do it via session

Re: Mounting problem with GlassFishv3

2010-01-31 Thread Major Péter
Hi, I made some investigation today, and found out the followings: With GlassFishv2 when the bookmarkablepagelink calculates the url, finally it goes to ServletWebRequest#getRelativePathPrefixToWicketHandler() . The difference is on line #270: String forwardUrl =

Back button, PageMap, Sessions Logout

2010-01-31 Thread sakthi vel
Hello All, I have a application which have login logout concept. When i logout, i am clearing the session using invalidate() (Each session have a atleast on one or more page map, which contains all the pages that are visited in the particular session). In IE8 when i press the back button, it

Re: FeedbackMessage Localization

2010-01-31 Thread Igor Vaynberg
info(getstring(key)) -igor On Sun, Jan 31, 2010 at 6:12 AM, Marek Šabo ms...@buk.cvut.cz wrote: Hi all, I was wondering, is there a way to localize messages comming from info() and error() form methods via property files? I could do it via session logic but I'm interested in other ways.

Re: (my code palette) how to set default options in object palette

2010-01-31 Thread nino martinez wael
Ok Victor next step for you would be to create a quickstart.. So we can play with it.. I've sure had this working with wicket 1.2 / 1.3 soo should still be the case. 2010/1/29 victorTrapiello vic...@trapiello.net I does not work, I think the key point is my IChoiceRenderer renderer = new

Re: (my code palette) how to set default options in object palette

2010-01-31 Thread victorTrapiello
Thank you very mucv Nino, but what do you mena by a quick start¿? I´m new in this comunity. nino martinez wael wrote: Ok Victor next step for you would be to create a quickstart.. So we can play with it.. I've sure had this working with wicket 1.2 / 1.3 soo should still be the case.

Re: (my code palette) how to set default options in object palette

2010-01-31 Thread Carlos Vara
Hi Victor, a quickstart is a wicket project using this maven archetype: http://wicket.apache.org/quickstart.html On Sun, Jan 31, 2010 at 7:46 PM, victorTrapiello vic...@trapiello.netwrote: Thank you very mucv Nino, but what do you mena by a quick start¿? I´m new in this comunity. nino

Re: (my code palette) how to set default options in object palette

2010-01-31 Thread victorTrapiello
Thank you very much I will try to do it victorTrapiello wrote: Thank you very mucv Nino, but what do you mena by a quick start¿? I´m new in this comunity. nino martinez wael wrote: Ok Victor next step for you would be to create a quickstart.. So we can play with it.. I've sure had

property file location feature request (ComponentStringResourceLoader)

2010-01-31 Thread pete swulius
Everyone, I am curious. Why are .properties files not located in the same way as .html? I've overridden: [ResourceStreamLocator] public IResourceStream locate( Class? clazz, String aPath, String aStyle, Locale aLocale, String anExtension ) I notice that property file locating doesn't invoke

Re: FeedbackMessage Localization

2010-01-31 Thread Marek Šabo
@Igor - works like a charm @Andrew - took me a while to play with hierarchy but got it working Thank you both, regards -- Marek Šabo On 01/31/2010 07:16 PM, Igor Vaynberg wrote: info(getstring(key)) -igor On Sun, Jan 31, 2010 at 6:12 AM, Marek Šabo ms...@buk.cvut.cz wrote: Hi all, I

Re: FeedbackMessage Localization

2010-01-31 Thread Andrew Lombardi
No problem. Igor's is probably a helluva lot easier :) If this helped, consider writing an example in the Wiki and/or adding an Example to WicketByExample.com! :P Cheers! On Jan 31, 2010, at 4:35 PM, Marek Šabo wrote: @Igor - works like a charm @Andrew - took me a while to play with

appending to the componentTagBody

2010-01-31 Thread Andrew Lombardi
Is there any method while inside onComponentTagBody to append values to the contents of the body rather than replacing? I'd like to ensure that if we're committing to the body on this custom tag, we don't remove what the user has put inside. thanks! To our success! Mystic Coders, LLC |

wicketGlobalPreCallHandler

2010-01-31 Thread Douglas Ferguson
I just started to use the wicketGlobalPreCallHandler and there is one of my pages that calls wicketGlobalPreCallHandler but not the wicketGlobalPostCallHandler Any reason why the post call handler wouldn't get called? D/

Re: wicketGlobalPreCallHandler

2010-01-31 Thread Matt Zemeck
unsubscribe From: Douglas Ferguson doug...@douglasferguson.us To: Wicket Mailing List List users@wicket.apache.org Sent: Sun, January 31, 2010 11:10:15 PM Subject: wicketGlobalPreCallHandler I just started to use the wicketGlobalPreCallHandler and there is one

Tomcat Deployment problem : adding CSS links have been modified ?

2010-01-31 Thread Ashika Umanga Umagiliya
Greetings, I've been developing my wicket application using maven+jetty and when I deployed it in Tomcat , all the CSS styles were missing. I noticed that all the CSS links have been modified by the container(or wicket?) and added the prefix ../ Eg: In my pages I have: link rel=stylesheet

RIA solution based on wicket

2010-01-31 Thread Josh Kamau
Hi guys; I would like to get your opinions and also share some of my views. I have been test-driving wicket for a couple of weeks now and i found it quite impressive. However , i would like to say that IMHO wicket is more suitable for creating websites as opposed to RIA applications. I would like

Re: RIA solution based on wicket

2010-01-31 Thread Riyad Kalla
Great idea -- probably just boils down to a time/resource issue more than anything. On Sun, Jan 31, 2010 at 10:28 PM, Josh Kamau joshnet2...@gmail.com wrote: Hi guys; I would like to get your opinions and also share some of my views. I have been test-driving wicket for a couple of weeks now

Re: appending to the componentTagBody

2010-01-31 Thread Igor Vaynberg
in oncomponenttagbody you have access to the markup stream. you can use the stream to retreive the RawMarkup element that represents the current body, tostring() it, append to it, and replaceComponentTagBody(mystring) -igor On Sun, Jan 31, 2010 at 5:44 PM, Andrew Lombardi and...@mysticcoders.com

Re: property file location feature request (ComponentStringResourceLoader)

2010-01-31 Thread Igor Vaynberg
i think this is due to historical reasons, the path is kept together in references as a single string. feel free to add an rfe for this, i think we are already working on this in 1.5 but an rfe in jira will help us remember. -igor On Sun, Jan 31, 2010 at 1:41 PM, pete swulius pswul...@gmail.com

Re: appending to the componentTagBody

2010-01-31 Thread Andrew Lombardi
awww, I see. would doing something like getResponse().write(myNewText) be incorrect? it seems to append how i'd like and a call to super puts in the users contribution On Jan 31, 2010, at 10:03 PM, Igor Vaynberg wrote: in oncomponenttagbody you have access to the markup stream. you can

Re: appending to the componentTagBody

2010-01-31 Thread Igor Vaynberg
knock yourself out. -igor On Sun, Jan 31, 2010 at 10:23 PM, Andrew Lombardi and...@mysticcoders.com wrote: awww, I see.  would doing something like  getResponse().write(myNewText) be incorrect?  it seems to append how i'd like and a call to super puts in the users contribution On Jan 31,

Re: Tomcat Deployment problem : adding CSS links have been modified ?

2010-01-31 Thread François Meillet
Hi Ashika, Give a try to this wicket:link link rel=stylesheet type=text/css href=style/tablestyle.css/ link rel=stylesheet type=text/css href=images/style.css/ /wicket:link François Le 1 févr. 2010 à 05:59, Ashika Umanga Umagiliya a écrit : Greetings, I've been

Re: Tomcat Deployment problem : adding CSS links have been modified ?

2010-01-31 Thread Ashika Umanga Umagiliya
Thanks François, That solved my issue. You r the best :) Regards Hi Ashika, Give a try to this wicket:link link rel=stylesheet type=text/css href=style/tablestyle.css/ link rel=stylesheet type=text/css href=images/style.css/ /wicket:link François Le 1 févr. 2010 à 05:59,