RE: jQuery+Wicket+Form

2009-08-16 Thread Stefan Lindner
Yes! Von: Martin Makundi [mailto:martin.maku...@koodaripalvelut.com] Gesendet: So 16.08.2009 15:50 An: users@wicket.apache.org Betreff: Re: jQuery+Wicket+Form Hi, by WIA you mean Wicket in Action? ** Martin 2009/8/16 Stefan Lindner lind...@visionet.de: I

Re: jQuery+Wicket+Form

2009-08-16 Thread Martin Makundi
Ok, have that, never had time to read. Tnx for the tip. ** Martin 2009/8/16 Stefan Lindner lind...@visionet.de: Yes! Von: Martin Makundi [mailto:martin.maku...@koodaripalvelut.com] Gesendet: So 16.08.2009 15:50 An: users@wicket.apache.org Betreff: Re:

Re: Datepicker popup when textfield is selected

2009-08-16 Thread Jan Grathwohl
Hi Cem, I don't know how this can be done with the wicket datepicker, but the JQuery datepicker has that already built in, without the need to write any additional JavaScript (only one line to init the datepicker and attach it to a text field). Maybe you could just add that one to a

Re: Sending data to a wicket form through a POST from an external site

2009-08-16 Thread NYSophia
We came across the same question. Did you end-up finding a solution? Thanks Rahul Pilani-3 wrote: I need to get data from an external site via a POST. Is there a way that wicket will trigger a form submit on the posted data? Otherwise I have to handle the params myself. I looked through

Re: Populating a model with form data from external site

2009-08-16 Thread NYSophia
Were you able to find a solution? LLehtinen wrote: Hi - I have normal POST requests coming from an external website. I would like to have a model object's members populated with the matching HTTP parameter values sent in the request. I have a feeling that there is an obvious an

MarkupnotFoundException in eclipse 3.4.2

2009-08-16 Thread Dale Ogilvie
Hello, The quickstart is proving anything but. I run quickstart: mvn archetype:create -DarchetypeGroupId=org.apache.wicket -DarchetypeArtifactId=wicket-archetype-quickstart -DarchetypeVersion=1.4.0 -DgroupId=nz.co.acme -DartifactId=myproject Then generate and eclipse project: mvn

Re: Model question ?

2009-08-16 Thread Martijn Dashorst
Just don't pass the model to another page (also don't do this for anon-inner classes, or nested classes that carry a this pointer to the page) Martijn On Sun, Aug 16, 2009 at 4:04 AM, Warren Bellwarr...@clarksnutrition.com wrote: Is there any issues you need to be concerned with when using the

Design of components utilizing JS, was: Wicket and JQuery - lavalamp

2009-08-16 Thread Uwe Schäfer
Eyal Golan schrieb: hi Eyal Hi all,I've created a small Wicket module for the lavalamp JQuery library (some links below). nice. why not on wicketstuff? Please be kind and give me any suggestion and insights. i just looked at it quickly, but two things strike me: 1st: afaik you should

jQuery+Wicket+Form

2009-08-16 Thread Martin Makundi
Hi! I need to implement a custom drop down -select component, because I need to display more information than can be fit onto a single line. I am considering using jQuery or similar RIA widgets on a web page running on Wicket. My problem is: how do I bind the custom select into wicket form

Re: Announcing: Scala-Wicket Extensions Project

2009-08-16 Thread Jörn Zaefferer
Its not quite as good as the Java Tools, but it has come a long way: http://www.scala-lang.org/node/94 Jörn On Sat, Aug 15, 2009 at 1:14 PM, Martin Sachssachs.mar...@gmail.com wrote: Thanks for that variant of programming wicket-application! I like scala and its concepts, very much.  Using

Re: jQuery+Wicket+Form

2009-08-16 Thread Martin Makundi
Hmm.. this might actually work, it uses the original form component to store the value: http://v2.easy-designs.net/articles/replaceSelect/ However.. that's a hand-made one. Anybody know of a similary library solution that is skinnable etc.? ** Martin 2009/8/16 Martin Makundi

RE: jQuery+Wicket+Form

2009-08-16 Thread Stefan Lindner
I Just made a custom Formcomonent with jQuery and I followed the guidelines shiown in WIA. I use a local model for my costum component, put it into a FormComponent public class Clock extends FormComponentPanelTime implements IHeaderContributor { and use the onBeforeRender()

RE: jQuery+Wicket+Form

2009-08-16 Thread Stefan Lindner
I see that I synchronize the model too in onBeforeRender: @Override protected void onBeforeRender() { internalModel.setObject(getModelObject()); internalField.setRequired(isRequired()); super.onBeforeRender(); } Stefan Von: Martin Makundi

Re: Design of components utilizing JS, was: Wicket and JQuery - lavalamp

2009-08-16 Thread egolan74
Uwe Schäfer-2 wrote: nice. why not on wicketstuff? I'll be glad putting it there. It's my intention. I've checked out wicketstuff. Should I just add my code and check in? Who should I contact to about this? Uwe Schäfer-2 wrote: 1st: afaik you should not use $(document).ready(... as

Re: Improving maven/wicket deployment process

2009-08-16 Thread Jeremy Thomerson
I have a shell script that does most of this stuff. Here's my steps: 1 - mvn clean package 2 - scp package to server(s) 3 - on server, run deploy script 3a - script makes temp working directory 3b - script copies web.xml, application.properties, etc from prod into temp dir 3c - script unzips war

Re: jQuery+Wicket+Form

2009-08-16 Thread Martin Makundi
Hi, by WIA you mean Wicket in Action? ** Martin 2009/8/16 Stefan Lindner lind...@visionet.de: I Just made a custom Formcomonent with jQuery and I followed the guidelines shiown in WIA. I use a local model for my costum component, put it into a FormComponent     public class Clock extends

WARN - Couldn't resolve model type, please set the type yourself.

2009-08-16 Thread Mostafa Mohamed
Hi, i have a form to add an item, i can select the type of this item from a drop down choice and accordingly the fields specific to the item will be replaced. before adding this line: AjaxFormValidatingBehavior.addToAllFormComponents(form, onblur); everything worked perfectly, i would have my