Re: [Wicket-user] ajax libraries wicket

2007-04-23 Thread Scott Swank
in context: http://www.nabble.com/-Wicket-user--ajax-libraries---wicket-tf3191437.html#a10129826 Sent from the Wicket - User mailing list archive at Nabble.com. - This SF.net email is sponsored by DB2 Express Download DB2

Re: [Wicket-user] ajax libraries wicket

2007-04-22 Thread Flavius
Is the DatesComparatorValidator object something you wrote or is that something coming in wicket 1.3? -- View this message in context: http://www.nabble.com/-Wicket-user--ajax-libraries---wicket-tf3191437.html#a10129826 Sent from the Wicket - User mailing list archive at Nabble.com

Re: [Wicket-user] ajax libraries wicket

2007-02-08 Thread Scott Swank
Igor, The most verbose code is the following. It creates the FeedbackPanel and two fields: a check-in date and a check-out date. The comments are a bit heavy because this is a proof-of-concept app. At this point, and such best practices pointers are more than welcome. Thank you. ...Oh, and

Re: [Wicket-user] ajax libraries wicket

2007-02-08 Thread Eelco Hillenius
it was our 2nd choice after considering a host of other options, including Stripes, Rife, Tapestry, Echo2, GWT, etc. I'd be interested to learn what you liked and didn't like about those alternatives (on this list or private). Eelco

Re: [Wicket-user] ajax libraries wicket

2007-02-08 Thread Eelco Hillenius
...Oh, and the CylleniusCalendar (our underlying app is named Cyllenius) is simply a sub-class of DatePicker with a HeaderContributor.forCss() to increase its z-index a a value greater than that of the ModalWindow from which it is opened. For anyone using that date picker component, read

Re: [Wicket-user] ajax libraries wicket

2007-02-08 Thread Scott Swank
Briefly, we wanted a component-centric framework for reuse and more nimble refactoring -- e.g. should this form be in-line with the rest of the page or in a popup; should this content be in a sequence of panels or in tabs? This left us with: Tapestry -- we heard daunting things about the

Re: [Wicket-user] ajax libraries wicket

2007-02-08 Thread Scott Swank
Cyllenius is a name for the Greek god Hermes -- associated with commerce. Given the importance of a solid date picker, I imagine we'll be following and perhaps contributing to this effort. http://en.wikipedia.org/w/index.php?title=Cylleniusredirect=no On 2/8/07, Eelco Hillenius [EMAIL

Re: [Wicket-user] ajax libraries wicket

2007-02-08 Thread Eelco Hillenius
On 2/8/07, Scott Swank [EMAIL PROTECTED] wrote: Cyllenius is a name for the Greek god Hermes -- associated with commerce. That sounds a lot better than Hillenius with Herpes ;) Eelco - Using Tomcat but need to do more?

Re: [Wicket-user] ajax libraries wicket

2007-02-08 Thread Eelco Hillenius
On 2/8/07, Eelco Hillenius [EMAIL PROTECTED] wrote: On 2/8/07, Scott Swank [EMAIL PROTECTED] wrote: Cyllenius is a name for the Greek god Hermes -- associated with commerce. That sounds a lot better than Hillenius with Herpes ;) Though I too have some godly features. But that's OT. Eelco

Re: [Wicket-user] ajax libraries wicket

2007-02-08 Thread Scott Swank
You know, JSF is sounding better better On 2/8/07, Eelco Hillenius [EMAIL PROTECTED] wrote: On 2/8/07, Eelco Hillenius [EMAIL PROTECTED] wrote: On 2/8/07, Scott Swank [EMAIL PROTECTED] wrote: Cyllenius is a name for the Greek god Hermes -- associated with commerce. That sounds a lot

Re: [Wicket-user] ajax libraries wicket

2007-02-08 Thread Erik van Oosten
He is talking about his beer drinking, I think... Erik. Scott Swank wrote: You know, JSF is sounding better better On 2/8/07, *Eelco Hillenius* [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: On 2/8/07, Eelco Hillenius [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]

Re: [Wicket-user] ajax libraries wicket

2007-02-08 Thread Jonathan Locke
___ Wicket-user mailing list Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user -- View this message in context: http://www.nabble.com/-Wicket-user--ajax-libraries---wicket-tf3191437.html#a8877521 Sent from the Wicket - User mailing list archive

Re: [Wicket-user] ajax libraries wicket

2007-02-08 Thread Igor Vaynberg
start with something simple like creating a reusable datetextfield private static class DateField extends DateTextField { public DateField(String id, IModel model) { super(id, model, MM/dd/); setrequired(true); setoutputmarkupid(true); } } this will change the

Re: [Wicket-user] ajax libraries wicket

2007-02-08 Thread Scott Swank
Now I'm really laughing at myself. I was reasonably proud of extracting this. private FormComponentFeedbackBorder buildAjaxFeedbackBorder(String borderId, FormComponent component, final FeedbackPanel feedback) { final FormComponentFeedbackBorder border = new

Re: [Wicket-user] ajax libraries wicket

2007-02-08 Thread Igor Vaynberg
On 2/8/07, Scott Swank [EMAIL PROTECTED] wrote: Now I'm really laughing at myself. I was reasonably proud of extracting this. you will get used to it, it is not apparent right off the bat. you did the hardest part which is write the code in the first place. what i did was just reorganize it

Re: [Wicket-user] ajax libraries wicket

2007-02-08 Thread Eelco Hillenius
now convert the datepicker from a panel to a behavior - pretty easy to do, in fact eelco will be doing that today? Just checked that in (wicket-datetime, CalendarPopup component is now replaced by behavior DatePicker). Imo, writing it like a behavior is less elegant than a component, but it's

[Wicket-user] ajax libraries wicket

2007-02-07 Thread Scott Swank
Hello all, After closely considering Wicket and JSF my company has decided to go with Wicket for our web development framework. This was based on a two week prototype effort between two teams of four developers each. The Wicket team made rapid progress and had extra time to add in unrequested

Re: [Wicket-user] ajax libraries wicket

2007-02-07 Thread Eelco Hillenius
That's good news Scott! You were actually pretty helpful yourself by thinking with us and providing good cases to answer. Let's not forget b.t.w. that there is a lot of free-time sweat and tears sacrificed by the developers of MyFaces, tomahawk, etc, and that - even though JSF doesn't have my

Re: [Wicket-user] ajax libraries wicket

2007-02-07 Thread Igor Vaynberg
On 2/7/07, Scott Swank [EMAIL PROTECTED] wrote: 2. Overall there was a preference for Wicket's Java components over JSF's taglibs and backing bean code. This was not a unanimous preference, and taglibs are much more concise than Wicket code. However, the cleanness of the resulting HTML was a