Re: How to invite Shopping cart method in product site

2011-01-13 Thread Martin Makundi
Hi! Product class you mean Tuote? Can you call tuote.add(kiekko); ? ** Martin 13. tammikuuta 2011 10.39 jussi isokangas jussi.isokan...@gmail.com kirjoitti: Hi, How can i  invite Shopping cart method which adds a wanted product to  Cart in product site? How I refer from product class for

Datatable filterToolbar TextField

2011-01-13 Thread Altuğ Bilgin Altıntaş
Hi; My Datatable works and I put FilterToolbar on it. When i enter some values in FilterToolbar 's TextField and press enter, FilterForm's onsubmit() doesn't triggered Has anyone encountered this problem before ? Thanks. -- *Altuğ* ** http://www.kodcu.com

AutoCompleteTextField - Event onSelect?!

2011-01-13 Thread MattyDE
Hi, iam using AutoCompleteTextField the first time, and it works very well for me in basics. But iam a little disappointed that there is no Method to get recognized which Item a User have been chosen. I imageing something like the dropDown Box onChange. My task is it to change a bunch of

Re: AutoCompleteTextField - Event onSelect?!

2011-01-13 Thread Pedro Santos
If your text field is inside an form, you can add an AjaxFormComponentUpdatingBehavior to it. On Thu, Jan 13, 2011 at 8:38 AM, MattyDE ufer.mar...@gmail.com wrote: Hi, iam using AutoCompleteTextField the first time, and it works very well for me in basics. But iam a little disappointed

Re: How to invite Shopping cart method in product site

2011-01-13 Thread jussi isokangas
Hi Martin I meant *Jaakiekko.* Actually it is productgroup not product, I wrote wrong. * Tuote* is product Entity class and *Jaakiekko *is web layer productgroup class in which *palvelu*(is service layer interface) invites Entity class * Tuote*. Below you can see how *palvelu* uses method which

Re: AutoCompleteTextField - Event onSelect?!

2011-01-13 Thread Andrea Del Bene
Hi, on 4 January Tom Burton (tom.bur...@alaska.gov) posted a message here with a modify version of AutoCompleteTextField which introduces onSelected event. I didn't have time yet to check his code but a think I will attach it to a JIRA ticket in the next days. Bye. Hi, iam using

OT: app throws java.lang.NoClassDefFoundError sometimes, and sometimes it doesnt

2011-01-13 Thread Sam Zilverberg
Hi, I'm running a wicket app on tomcat 6.0.20. Once in a while I need to redeploy it (after fixing some stuff, adding features and so on). This is how I redeploy: 1.Use tomcat manager to undeploy the running app. 2.Deploy the new app by copying the new WAR file to a library inside tomcat.

Re: OT: app throws java.lang.NoClassDefFoundError sometimes, and sometimes it doesnt

2011-01-13 Thread James Carman
Send this to the Tomcat list. On Thu, Jan 13, 2011 at 6:58 AM, Sam Zilverberg samzilverb...@gmail.com wrote: Hi, I'm running a wicket app on tomcat 6.0.20. Once in a while I need to redeploy it (after fixing some stuff, adding features and so on). This is how I redeploy: 1.Use tomcat

Re: OT: app throws java.lang.NoClassDefFoundError sometimes, and sometimes it doesnt

2011-01-13 Thread Thomas Gier
Am 13.01.11 12:58, schrieb Sam Zilverberg: Hi, I'm running a wicket app on tomcat 6.0.20. Once in a while I need to redeploy it (after fixing some stuff, adding features and so on). This is how I redeploy: 1.Use tomcat manager to undeploy the running app. 2.Deploy the new app by copying the new

Fwd: FogBugz (Case 17743) Inbox - Application Error : prmanager : [Ljava.lang.String; cannot be cast to java.lang.String

2011-01-13 Thread Douglas Ferguson
I see the stack trace below in my production logs quite often. I'm not sure what is causing it but it seems that this error need not happen. I.E. Why Cast this to a string when it could easily be String[] if somebody messes with the query string? Seem like a parameters.removeFirst() method

Re: AutoCompleteTextField - Event onSelect?!

2011-01-13 Thread Bilgin Ibryam
Have you checked getOnSelectJavascriptExpression method in AbstractAutoCompleteRenderer class ? I use that to call javascript function on user selection. HTH Bilgin Ibryam On Thu, Jan 13, 2011 at 10:38 AM, MattyDE ufer.mar...@gmail.com wrote: Hi, iam using AutoCompleteTextField the first

Re: AutoCompleteTextField - Event onSelect?!

2011-01-13 Thread Peter Karich
I've implemented this here: https://github.com/karussell/Jetwick/tree/master/src/main/java/de/jetwick/ui/util - adapted wicket-autocomplete.js + MyAutoComplete*.java (via sv paramter) try this at jetwick.com type 'andro' and now a selection e.g. 'android' should trigger a search ... If your

Re: What already redirecting error?

2011-01-13 Thread Arjun Dhar
Hi, I have a very very Dynamic Form. In the public void onSubmit() {...}, due to some Change in a Drop Down the entire Form changes. To keep it simple I just decided to Re-Load the entire page. but looks like from onSumbit() you cannot call getRequestCycle().redirectTo(...) or you get the

Re: What already redirecting error?

2011-01-13 Thread Arjun Dhar
DOH! the answer to Q1) was RestartResponseException. As mentioned in the above post Am still curious to know the answer to Q2) if someone already knows! thanks -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/What-already-redirecting-error-tp1890181p3216501.html Sent

Re: What already redirecting error?

2011-01-13 Thread Hans Lesmeister
I think Form.replace() is your friend Cheers Hans Am 13.01.2011 um 20:17 schrieb Arjun Dhar dhar...@yahoo.com: Hi, I have a very very Dynamic Form. In the public void onSubmit() {...}, due to some Change in a Drop Down the entire Form changes. To keep it simple I just decided to