Re: [Wicket-user] Can I get a 'Nice URL' when form validation fails?

2007-07-08 Thread Joshua Lim
sure thanks On 7/6/07, Igor Vaynberg [EMAIL PROTECTED] wrote: On 7/6/07, Joshua Lim [EMAIL PROTECTED] wrote: https://issues.apache.org/jira/browse/WICKET-725 thanks, but do understand this is not a priority right now so it wont happen in 1.3.0 timeframe -igor On 7/6/07, Igor Vaynberg

Re: [Wicket-user] non-wicket relative link pre-pending question

2007-07-06 Thread Joshua Lim
thanks for the explanation igor I will use /mycontext for now as there's only a few links I can manage ... would try to figure out why it only happens on the deployed server and not on my development environment Josh On 7/6/07, Igor Vaynberg [EMAIL PROTECTED] wrote: On 7/5/07, Joshua

Re: [Wicket-user] Can I get a 'Nice URL' when form validation fails?

2007-07-06 Thread Joshua Lim
https://issues.apache.org/jira/browse/WICKET-725 On 7/6/07, Igor Vaynberg [EMAIL PROTECTED] wrote: On 7/5/07, Joshua Lim [EMAIL PROTECTED] wrote: Thanks for the explanation igor, I would like to use google analytics on all our pages, hence I need to have all the pages mounted

Re: [Wicket-user] Can I get a 'Nice URL' when form validation fails?

2007-07-05 Thread Joshua Lim
lets say validation fails - that means your form.onsubmit() is never called. what wicket does is redirect to a url that will render the current page again back to the user (it doesnt have to redirect, but it does by default - see redirect-after-post pattern for details). this url also cannot be

[Wicket-user] non-wicket relative link pre-pending question

2007-07-05 Thread Joshua Lim
Hi I am hitting a problem with my static links being pre-pended with ../. This is happening to my Link... and A Href So where I have a href=a_mounted_path becomes a href=../a_mounted_path when I have a validation error on this page. and it happens only upon the 2nd time of validation

Re: [Wicket-user] FormInput Example on 1.3 Clearing Radio/Check/Box on error

2007-06-29 Thread Joshua Lim
the bug is in the wicket-examples using a ListView in a Form without setResueItems set On 6/29/07, Joshua Lim [EMAIL PROTECTED] wrote: Here it is : https://issues.apache.org/jira/browse/WICKET-710 On 6/29/07, Igor Vaynberg [EMAIL PROTECTED] wrote: On 6/28/07, Joshua Lim [EMAIL PROTECTED

[Wicket-user] FormInput Example on 1.3 Clearing Radio/Check/Box on error

2007-06-28 Thread Joshua Lim
Hi I am encountering a behaviour on 1.3 trunk forminput on wicket-examples which I think wasn't the same before.(been away from wicket for a while) When I clear the String TextField (which is a requiredTextField) to force an error , my values on the Radio/Check/Group seems to be cleared as

Re: [Wicket-user] FormInput Example on 1.3 Clearing Radio/Check/Box on error

2007-06-28 Thread Joshua Lim
Here it is : https://issues.apache.org/jira/browse/WICKET-710 On 6/29/07, Igor Vaynberg [EMAIL PROTECTED] wrote: On 6/28/07, Joshua Lim [EMAIL PROTECTED] wrote: Hi I am encountering a behaviour on 1.3 trunk forminput on wicket-examples which I think wasn't the same before.(been away from

Re: [Wicket-user] Wicket YUI

2007-06-04 Thread Joshua Lim
Hi... I updated the Yui Slider and also the examples on it. It now includes a divisor so that it can return a more customisable range of value instead of pixel values. also the slider thumb will initialise to the starting value based on the model of the textfield attached to it. have fun. Josh

[Wicket-user] getVariation and extended panels

2007-05-10 Thread Joshua Lim
Hi I have got a SuperPanel class that extends Panel, I have a few variations of html for this SuperPanel and am overriding the getVariation() method for to get what I want ...that's all good. Then I wanted to add a ChildPanel extending SuperPanel. and also I would like to have ChildPanel to

Re: [Wicket-user] getVariation and extended panels

2007-05-10 Thread Joshua Lim
you think the behavior should be, and what it is now? -igor On 5/10/07, Joshua Lim [EMAIL PROTECTED] wrote: Hi I have got a SuperPanel class that extends Panel, I have a few variations of html for this SuperPanel and am overriding the getVariation() method for to get what I want ...that's

[Wicket-user] Back-button / versioning

2007-04-30 Thread Joshua Lim
Hi I was having a little problem with back-button and versioning... I am using 1.3 snapshot from trunk. (as of today) I have a few wicket pages :- ParentPage contains a form and a submit button without form components. ChildPage(s) of this ParentPage calls getForm().add(some component). The

Re: [Wicket-user] Contributing to wicket-contrib-yui

2007-04-29 Thread Joshua Lim
at 14:13 +0800, Joshua Lim wrote: I also hope that it could be a wicket package. I don't want to be dependent on the hosting. What about having the option to do either one? Sure, use by default a local copy, and let the user choose the script to load. That's what we do

Re: [Wicket-user] Contributing to wicket-contrib-yui

2007-04-27 Thread Joshua Lim
I also hope that it could be a wicket package. I don't want to be dependent on the hosting. I did some work on the package but unfortunately could not complete it to what we wanted and it's been there for a while. josh On 4/27/07, David Leangen [EMAIL PROTECTED] wrote: David, if you send us

Re: [Wicket-user] How to Run behind SSL Loadbalancer + apache web server cluster

2006-11-06 Thread Joshua Lim
?JoshOn 11/6/06, Joshua Lim [EMAIL PROTECTED] wrote: Hi igor Yes you are right, between the (loadbalancer) LB and apache and Weblogic (internal nework) they are all over http - and only the browser to the LB is SSL... Is there something at the application level that I can do to make it work ? I am afraid

Re: [Wicket-user] How to Run behind SSL Loadbalancer + apache web server cluster

2006-11-06 Thread Joshua Lim
thanks for the reply. appreciated... will try on the LB endOn 11/6/06, Johan Compagner [EMAIL PROTECTED] wrote: but then it is the ssl loadbalancer at fault here.Wicket just redirects what it has (and internally wicket redirects to relative urls)So weblogic makes it absolute (with

[Wicket-user] How to Run behind SSL Loadbalancer + apache web server cluster

2006-11-05 Thread Joshua Lim
Hi wicket users,I need some help on running an wicket application behind a SSL load balancer.The wicket application is running on a weblogic server, and accessing the application works fine on its own.(i.e . accessing via IP+port number)and testing it with apache + mod_ssl + mod_jk + tomcat works

Re: [Wicket-user] How to Run behind SSL Loadbalancer + apache web server cluster

2006-11-05 Thread Joshua Lim
Hi igor Yes you are right, between the (loadbalancer) LB and apache and Weblogic (internal nework) they are all over http - and only the browser to the LB is SSL... Is there something at the application level that I can do to make it work ? I am afraid I might have difficulty getting the

Re: [Wicket-user] Dyanmic component's model

2006-09-13 Thread Joshua Lim
));-IgorOn 9/12/06, Joshua Lim [EMAIL PROTECTED] wrote: Hi I am trying to create a set of dynamic components that will generate dynamic numbers of input components, but I got stuck in providing a model for it.for e.g. I have TextGroupPanel - which will create a series of TextField RadioGroupPanel

[Wicket-user] Dyanmic component's model

2006-09-12 Thread Joshua Lim
Hi I am trying to create a set of dynamic components that will generate dynamic numbers of input components, but I got stuck in providing a model for it.for e.g. I have TextGroupPanel - which will create a series of TextField RadioGroupPanel - which will generate a Grid type of Radio

[Wicket-user] [wikcet-user] wicket.markup.IMarkup missing in svn

2006-07-31 Thread Joshua Lim
Hi..just checked out wicket 1.2.1 branch... looks like wicket.markup.IMarkup.java is missing ?josh - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share

Re: [Wicket-user] yui slider enquiry

2006-03-29 Thread Joshua Lim
and added an additional method with an index argument to enable further tweaking if needed. Eelco On 3/28/06, Joshua Lim [EMAIL PROTECTED] wrote:It seems that the slider is loading the *.js in some random order...so YAHOO.js is loaded _after_ dom.js etc...which caused a YAHOO

Re: [Wicket-user] yui slider enquiry

2006-03-29 Thread Joshua Lim
atCalendar too. The component works, though I made no effort yet to build a picker on top of it, but it doesn't cooperate in a formeither, and it is hardly configurable.EelcoOn 3/29/06, Joshua Lim [EMAIL PROTECTED] wrote: Thanks Eelco I have been poking around and manage to get the slider out

Re: [Wicket-user] yui slider enquiry

2006-03-29 Thread Joshua Lim
- so dragging a draggable over a target replaces it instead of adding up ?? still thinking about this one, could be used for matching question. JoshuaOn 3/30/06, Igor Vaynberg [EMAIL PROTECTED] wrote: On 3/29/06, Joshua Lim [EMAIL PROTECTED] wrote: and the other a editable div like tiddywiki http

[Wicket-user] yui slider enquiry

2006-03-28 Thread Joshua Lim
HiI would like to use the yui slider bar ... is it still experimental?noticed it in the exmaple app (1.2b2 in there under yui, but not exactly shown on the home page)thanks joshua

Re: [Wicket-user] yui slider enquiry

2006-03-28 Thread Joshua Lim
to improve, we are morethan happy to receive a patch.JuergenOn 3/29/06, Joshua Lim [EMAIL PROTECTED] wrote: Hi I would like to use the yui slider bar ...is it still experimental? noticed it in the exmaple app (1.2b2 in there under yui, but not exactly shown on the home page) thanks joshua

Re: [Wicket-user] yui slider enquiry

2006-03-28 Thread Joshua Lim
, Eelco Hillenius [EMAIL PROTECTED] wrote: That was because I used a set to filter double contributions. I changed this to list to guarantee order and added an additional method with an index argument to enable further tweaking if needed. Eelco On 3/28/06, Joshua Lim [EMAIL PROTECTED] wrote: It seems

Re: [Wicket-user] OT? Tomcat not removing wicket.jar

2006-03-07 Thread Joshua Lim
I was having this similiar problem, I have a few apps on my isp (kattare incidentally) and I needed to redeploy each one without shutting the whole damn (pardon me) thing down. using the tomcat manager wasn't helping as it did not remove the WEB-INF/lib directory and was causing SEVERE:

Re: [Wicket-user] OT? Tomcat not removing wicket.jar

2006-03-07 Thread Joshua Lim
typo - antiResourceLocking=trueOn 3/7/06, Joshua Lim [EMAIL PROTECTED] wrote:I was having this similiar problem, I have a few apps on my isp (kattare incidentally) and I needed to redeploy each one without shutting the whole damn (pardon me) thing down. using the tomcat manager wasn't helping

Re: [Wicket-user] VOTE

2006-02-20 Thread Joshua Lim
+1 1. Give me the constructor change and the Java 5 functionality in one pass (Wicket 2.0)

[Wicket-user] body onLoad=... in Panel not added without wicket:head

2006-01-05 Thread Joshua Lim
Not sure if this is a intended .. but I was trying to get my panel to contribute to the body onload... tag. saw that it is supported through the mailing list. However, for my panel, if I didn't have wicket:head in myPanel.html, the body would not be added... is this normal? Josh

Re: [Wicket-user] Using POJO as Model - is this right?

2005-12-27 Thread Joshua Lim
the blob onyour pojo and save it. this way you can keep your pojo clean. Maurice2005/12/23, Joshua Lim [EMAIL PROTECTED]: Hi I have a question about using POJO as Models in wicket. BTW, love the framework ! I am using Hibernate 3 and Wicket 1.1 I've got 2 POJO : Contestant -1:n- Design. I have a page

[Wicket-user] Using POJO as Model - is this right?

2005-12-22 Thread Joshua Lim
Hi I have a question about using POJO as Models in wicket. BTW, love the framework ! I am using Hibernate 3 and Wicket 1.1 I've got 2 POJO : Contestant -1:n- Design. I have a page which lets a Contestant uploads a bunch of images and each of these images are stored as Blobs in a database. Each

[Wicket-user] RenderedDynamicImageResource needs refresh?

2005-10-24 Thread Joshua Lim
Hi I am trying to understand dynamic images using wicket 1.1 rc 2. basically i have 2 pages. A login page and a voucher page. - similar to the login example in eicket example. Here's the problem. after loggin in, I present a voucher based on the next page. this voucher is created using

Re: [Wicket-user] RenderedDynamicImageResource needs refresh?

2005-10-24 Thread Joshua Lim
/24/05, Joshua Lim [EMAIL PROTECTED] wrote: Hi I am trying to understand dynamic images using wicket 1.1 rc 2. basically i have 2 pages. A login page and a voucher page. - similar to the login example in eicket example. Here's the problem. after loggin in, I present a voucher based on the next

[Wicket-user] setHeader on webResponse

2005-10-23 Thread Joshua Lim
Hi I am trying to set http header on one of my WebPage I tried over ridding this method but get a class cast error. can anyone point me to where to go? Thanks Joshua protected void configureResponse() { // super.configureResponse(); System.out.println(getWebRequestCycle().getClass());

[Wicket-user] setRenderBody(true) on Link

2005-09-28 Thread Joshua Lim
Hi I am using wicket for a simple app. but I have a few constraints because the web page is to be displayed on a i-mode phone. which has a browser that understands a sub-set of HTML. so it does not understand wicket:id in a tag, does not understand span, does not allow /li etc...and no

[Wicket-user] Re: setRenderBody(true) on Link

2005-09-28 Thread Joshua Lim
I meant setRenderBodyOnly(true)On 9/28/05, Joshua Lim [EMAIL PROTECTED] wrote: Hi I am using wicket for a simple app. but I have a few constraints because the web page is to be displayed on a i-mode phone. which has a browser that understands a sub-set of HTML. so it does not understand wicket:id

[Wicket-user] setSuffix for RadioChoice

2005-08-26 Thread Joshua Lim
Hi I need a radio choice a single row, i.e. I don't want to br that's at the setSuffix. it seems that the only way is to subclass RadioChoice and override getSuffix() ? or is there an easier way which I can achieve radioChoices in a single row. I am trying to generate a table with radio

Re: [Wicket-user] FieldLabel component

2005-08-20 Thread Joshua Lim
On 7/30/05, Gert Jan Verhoog [EMAIL PROTECTED] wrote: On Jul 30, 2005, at 04:44, Igor Vaynberg wrote: This will create a field label that will turn red when the linked form component has an error. Another good use is to prepand an asterisk to the fieldlabel's label if the linked

Re: [Wicket-user] getParent recursively?

2005-08-16 Thread Joshua Lim
- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Joshua Lim Sent: Tuesday, August 16, 2005 9:26 PM To: wicket-user@lists.sourceforge.net Subject: [Wicket-user] getParent recursively? Hi, I have a question regarding components and getting it's parent. I have a Form which

[Wicket-user] Form Post to External Site

2005-07-19 Thread Joshua Lim
Hi, I need to do a Form Post out of a Wicket WebPage to a External Location. Basically, I have a WebPage that has a form. I override the onSubmit to do some database updates etc... upon completion, I would like to do a Form Post out along with some information... Could someone point me to how

Re: [Wicket-user] Form Post to External Site

2005-07-19 Thread Joshua Lim
Hi Eelco, yes, currently I have a Page with a Panel containing a Form. on submit, I get the values and update database...(that's the plan) and than I need to do a form post. I am not keen to put the external form in the wicket page... but prefer to build it up dynamically... I like the

[Wicket-user] linkomatic - IE6 endless loop

2005-07-19 Thread Joshua Lim
Hi was trying out linkomatic RedirectPage example(last one), and it caused an endless loop in IE, Firefox seems ok... anyone know why? http://www.wicket-library.com/wicket-examples/linkomatic Josh --- SF.Net email is sponsored by: Discover

Re: [Wicket-user] Form Post to External Site

2005-07-19 Thread Joshua Lim
I was meaing option 2 :P On 7/19/05, Eelco Hillenius [EMAIL PROTECTED] wrote: Joshua Lim wrote: Hi Eelco, yes, currently I have a Page with a Panel containing a Form. on submit, I get the values and update database...(that's the plan) and than I need to do a form post. I am