[Wicket-user] Re: Hibernate vs Cayenne?

2005-08-26 Thread Eelco Hillenius
I have no experience with Cayenne, but some readers (Jonathan C) have. From what I understand, Cayenne works with static code generation. I have experience with OJB. I'm not too crazy about it to put it mildly, though I have been working with pre-1.0 versions. Maybe if you want more control, you

[Wicket-user] Re: WebPage can't link to itself (Wicket 1.1 beta2 and beta3)

2005-08-26 Thread Eelco Hillenius
Or just set autolinking off. Personally, I think that would be a better default, as it is pretty common to be able to have such a link as kind of a refresh. If you look at most public sites (Google, Flickr, Yahoo) etc, they all have them just enabled. Eelco On 8/25/05, Igor Vaynberg [EMAIL

Re: [Wicket-user] TypeValidator doesn't check if a date is valid

2005-08-26 Thread Johannes Fahrenkrug
Eelco, I opened issue number 1273827 for this. - Johannes Eelco Hillenius wrote: That's probably the lenient feature of DateFormat. Thought that was off by default. Could you open an issue please? Eelco On 8/25/05, Johannes Fahrenkrug [EMAIL PROTECTED] wrote: Ok, new insights on this

Re: [Wicket-user] Setting of hasErrorMessage on FormComponents

2005-08-26 Thread Johannes Fahrenkrug
Should I maybe post this again on the developers list? - Johannes Johannes Fahrenkrug wrote: Hi, this is my problem: I subclassed the TextField and created a TextFieldWithErrorIndicator class. I overrode the onRender method like so: @Override protected void onRender() { String

[Wicket-user] Re: Setting of hasErrorMessage on FormComponents

2005-08-26 Thread Eelco Hillenius
No, user list is fine too. I haven't found the time to look at it yet. Could you give us a bit more code? Eelco On 8/26/05, Johannes Fahrenkrug [EMAIL PROTECTED] wrote: Should I maybe post this again on the developers list? - Johannes Johannes Fahrenkrug wrote: Hi, this is my

Re: [Wicket-user] RE: Problem with markup inheritance (head)

2005-08-26 Thread Juergen Donnerstag
Yes, there seems to be a problem with components inside head. Juergen On 8/26/05, pepone pepone [EMAIL PROTECTED] wrote: I trying what Stefan lindner says wicth wicket.1.1-b3 but is not working for me It´s only render childs head any ideas? thanks On 8/25/05, Stefan Lindner [EMAIL

[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] Re: Hibernate vs Cayenne?

2005-08-26 Thread Gwyn Evans
Hmm, Ironically, I got the book some time ago, but haven't actually got in a position to need to use it until a few days ago, when I used it to come up with a one-date data viewing app[1]. Anyway, a quick look for comparisions came up with the following quote from

Re: [Wicket-user] Re: Hibernate vs Cayenne?

2005-08-26 Thread Eelco Hillenius
The thing is, that while Hibernate can help you out a lot when you have a bunch of complex relations, it can also get in your way. Especially when optimizing your applications, and/ or when you have to do really advanced queries, it is not allways obvious how Hibernate will work out things. Which

Re: [Wicket-user] Re: WebPage can't link to itself (Wicket 1.1 beta2 and beta3)

2005-08-26 Thread Gwyn Evans
Hmm, are you sure?I looked at your first example and Google has the following... (switched to gmail's rich formatting, so not sure how will come through...) WebImages GroupsNews Froogle on the standard page, then the following on the Image page, etc... WebImages GroupsNews Froogle Yahoo does a

Re: [Wicket-user] Re: WebPage can't link to itself (Wicket 1.1 beta2 and beta3)

2005-08-26 Thread Eelco Hillenius
Ah, ok. I was thinking about Google's gmail (e.g. your inbox link). Eelco On 8/26/05, Gwyn Evans [EMAIL PROTECTED] wrote: Hmm, are you sure?I looked at your first example and Google has the following...(switched to gmail's rich formatting, so not sure how will come through...) WebImages

Re: [Wicket-user] Re: WebPage can't link to itself (Wicket 1.1 beta2 and beta3)

2005-08-26 Thread pepone pepone
Gmail inbox is not a Link is a normal tag I supose this tag onClick make same js XmlHttpRequest span class=lk id=ds_inbox bInbox (38099)/b/span On 8/26/05, Eelco Hillenius [EMAIL PROTECTED] wrote: Ah, ok. I was thinking about Google's gmail (e.g. your inbox link). Eelco On 8/26/05, Gwyn Evans

Re: [Wicket-user] Re: WebPage can't link to itself (Wicket 1.1 beta2 and beta3)

2005-08-26 Thread Gili
I don't know what Google or others are using but I have noticed that a lot of new Wicket users get confused with this behavior being enabled by default. For this reason alone you might want to default it to off. This issue also related to the remove setAutoEnabled() bug that I opened a

Re: [Wicket-user] Poolable pages

2005-08-26 Thread Johan Compagner
you can build it pretty easy. Just extend WebSession and hold a map with pages you like to pool. Christian Essl wrote: I was just following the discussion on the Tapestry and JSF comparision. I wonder if it is possible to use in wicket pooled pages. Something like a detachable-model for

Re: [Wicket-user] Re: Hibernate vs Cayenne?

2005-08-26 Thread Gili
It seems that only one person has actually tried Cayenne. Why is that? I am familiar with iBatis but as you guys have mentioned it is far more low-level than Hibernate. Cayenne (in theory) has equivilent functionality to Hibernate with a similar design but a better support. Hibernate has

[Wicket-user] Which application in SessionFactory?

2005-08-26 Thread Anders Peterson
Doesn't the newSession method in the ISessionFactory interface need to take an (the) application as an argument? As it is now you can ONLY create ISessionFactory instances as an anonymous class. /Anders -- http://ojalgo.org/ Mathematics, Linear Algebra and Optimisation with Java

Re: [Wicket-user] Poolable pages

2005-08-26 Thread Christian Essl
Thanks for the answers. And you are right it is no good idea and does not work. This seems just to be one of the arguments which is often used for Tapestry (Session efficency). Christian On Fri, 26 Aug 2005 15:28:38 +0200, Eelco Hillenius [EMAIL PROTECTED] wrote: No! A page is a specific

Re: [Wicket-user] Poolable pages

2005-08-26 Thread Johan Compagner
don't use static ofcourse, but we all know that ;) Eelco Hillenius wrote: No! A page is a specific instance of one user. What would you accomplish? Eelco On 8/26/05, Johan Compagner [EMAIL PROTECTED] wrote: you can build it pretty easy. Just extend WebSession and hold a map with pages you

Re: [Wicket-user] Poolable pages

2005-08-26 Thread Christian Essl
Thanks, Sorry if I expressed myself unclear, but I rather meant to share the same page-instance for different users (not concurrently). But it does not work and was a rather stupid question. Christian On Fri, 26 Aug 2005 15:21:45 +0200, Johan Compagner [EMAIL PROTECTED] wrote: you can

[Wicket-user] Poolable pages

2005-08-26 Thread Christian Essl
I was just following the discussion on the Tapestry and JSF comparision. I wonder if it is possible to use in wicket pooled pages. Something like a detachable-model for pages which gets stored in the Session instead of the actual page. Can something similar be achieved in wicket? I don't

Re: [Wicket-user] Hibernate vs Cayenne?

2005-08-26 Thread Jonathan Carlson
I've been pretty pleased with Cayenne and I'm starting soon on a Cayenne implementation of Jonathan L's wicket-contrib-database stuff. Also, the RAD components I'm building (and hope to check in within a week or two) are abstracted enough to support different ORM tools (mainly my filtered List

Re: [Wicket-user] TypeValidator doesn't check if a date is valid

2005-08-26 Thread Nick Heudecker
I think the leniency is in Calendar, not DateFormat. On 8/25/05, Eelco Hillenius [EMAIL PROTECTED] wrote: That's probably the lenient feature of DateFormat. Thought that was off by default. Could you open an issue please? Eelco On 8/25/05, Johannes Fahrenkrug [EMAIL PROTECTED] wrote:

Re: [Wicket-user] Poolable pages

2005-08-26 Thread Johan Compagner
ahh ok now i get also eelco's response many people are asking the question but then mean for one session (how to reuse pages) But no storing them in such a thing as an application wouldn't be very wise i think. But what is really gained? Memory? If you use detachable models i don't

[Wicket-user] Re: Hibernate vs Cayenne?

2005-08-26 Thread Jonathan Carlson
I like your name, Anders. My son's name is Anders Carlson and my wife was a Peterson. We had to give our Anders a Scandinavian first name because we couldn't get pregnant until we visited my relatives in Sweden. Back to my real post: At work I introduced the Spring DAO framework (nothing

Re: [Wicket-user] Hibernate vs Cayenne?

2005-08-26 Thread Gili
Ok, so I've got your back then :) I'm reading the user manual now. I'm less concerned about performance (I hear it is equivilent to Hibernate anyway) and more concerned about when I run into problems will it be obvious how to solve them and/or will I have somewhere to ask (in this case

Re: [Wicket-user] Hibernate vs Cayenne?

2005-08-26 Thread Gili
One thing I can see us adding fairly early on is a Wicket section to their documentation. Currently it only includes a Tapestry tutorial like you mentioned. Gili Gili wrote: One thing at a time. First, I want to try to migrate my application code to Cayenne. Once that's done I will

[Wicket-user] Lookup Spring WebApplicationContext

2005-08-26 Thread Ingram Chen
I have browsed Spring integration from Wicket-Stuff, but it is a little complex... I would like to use direct lookup from a super class Page: public class BaseWebPage extends WebPage { private static WebApplicationContext webApplicationContext; protected final static Object getBean(String

Re: [Wicket-user] TypeValidator doesn't check if a date is valid

2005-08-26 Thread Phil Kulak
No, it's DateFormat.setLenient(boolean lenient). On 8/26/05, Nick Heudecker [EMAIL PROTECTED] wrote: I think the leniency is in Calendar, not DateFormat. On 8/25/05, Eelco Hillenius [EMAIL PROTECTED] wrote: That's probably the lenient feature of DateFormat. Thought that was off by

Re: [Wicket-user] maybe a bug

2005-08-26 Thread Gwyn Evans
I'm not 100% sure why it's doing it, but isn't div a block-level tag, i.e. it needs to surround something to be valid? Maybe the parser that Wicket's using is detecting correcting the div/ rather than complaining? /Gwyn On 26/08/05, pepone pepone [EMAIL PROTECTED] wrote: I put this tag in a

[Wicket-user] Cayenne advantages

2005-08-26 Thread Gili
I've already found one design advantage of Cayenne, cross-VM caching: http://www.objectstyle.org/cayenne/userguide/design/caching.html I ran into problems with Hibernate because I had to access the DB from two different JVMs (one from a webapp, another from an admin console) and EHCache

Re: [Wicket-user] Poolable pages

2005-08-26 Thread Phil Kulak
Pooling has some huge drawbacks since it really goes against the language itself. I think it's good for things like DB connections that really are expensive, but for pages? They're just objects. On 8/26/05, Johan Compagner [EMAIL PROTECTED] wrote: ahh ok now i get also eelco's response

RE: [Wicket-user] Lookup Spring WebApplicationContext

2005-08-26 Thread Igor Vaynberg
Why not store the context in the application subclass? that way your final static Object getBean() can look like this getBean() { return ((MyAppSubclass)WebApplication.get()).getContext(); } -Igor From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ingram

RE: [Wicket-user] Lookup Spring WebApplicationContext

2005-08-26 Thread Igor Vaynberg
or better yet, use a simple application factory and create your application object as a bean, make it context aware and you got a cleaner integration: public class SpringApplicationFactory implements IWebApplicationFactory{ public WebApplication createApplication(WicketServlet

Re: [Wicket-user] maybe a bug

2005-08-26 Thread Scott Sauyet
I don't think so. The WC3 Validator doesn't report a problem with this page: http://test.sauyet.com/CSS/EmptyDiv/ which includes an empty div. -- Scott Gwyn Evans wrote: I'm not 100% sure why it's doing it, but isn't div a block-level tag, i.e. it needs to surround something to be

RE: [Wicket-user] Cayenne advantages

2005-08-26 Thread Igor Vaynberg
See gili this is why you get banned from hibernate forums. Not having cross-jvm cache is not hibernate's fault because the cache implementation is pluggable. EHCache is just the default cache and it wasn't meant to be cross-jvm enabled. From your comment I can infer that you checked out all other

RE: [Wicket-user] maybe a bug

2005-08-26 Thread Scott T weaver
However, the Tidy extension for Firefox reports a warning: - trimming empty ... Cause: A tag is empty or just containing spaces. Space are ignored, due that introduction spaces are trimmed in HTML. This tag is probably really

Re: [Wicket-user] maybe a bug

2005-08-26 Thread Scott Sauyet
Scott T weaver wrote: However, the Tidy extension for Firefox reports a warning: Yes, but that is just a Tidy warning. The HTML is valid, at least in XHTML strict. Of course an empty div will have no semantics behind it, but it can be used in conjunction with CSS for various effects, and

Re: [Wicket-user] Lookup Spring WebApplicationContext

2005-08-26 Thread Ingram Chen
Placeing webApplicationContext in WebApplicaiton is a more nature and cleaner way ! Good idea ! Thanks a lot. On 8/27/05, Igor Vaynberg [EMAIL PROTECTED] wrote: or better yet, use a simple application factory and create your application object as a bean, make it context aware and you got a

Re: [Wicket-user] Cayenne advantages

2005-08-26 Thread Gili
Igor, I don't appreciate your accusations. This is not at all anything to do with why they banned me from their forums. I know that their cache implementation is pluggable but do I do not have access to JBoss's tree cache. Cayenne comes with this support for free out of the box. This is

[Wicket-user] Unexpected Page Expiration

2005-08-26 Thread Philip A. Chapman
Everyone, I have a very puzzling problem that I cannot figure out. I have created a page called IssueSelection. I create links to it and other pages on a page called ReportsListing. When I create a link to it on ReportsListing, clicking on *any* link on ReportListing results in the generic

RE: [Wicket-user] Cayenne advantages

2005-08-26 Thread Igor Vaynberg
Well I ran into problems with Hibernate because I had to access the DB from two different JVMs (one from a webapp, another from an admin console) and EHCache is a per-process cache. Sounds to me like you are claiming a problem with hibernate when in fact it is not - it is a problem

Re: [Wicket-user] Cayenne advantages

2005-08-26 Thread Gwyn Evans
It may be a good thing that the default cache implementation supports cross-vm caching, but it's a very long way short of a design advantage, which was your 'headline' claim... /Gwyn On 26/08/05, Gili [EMAIL PROTECTED] wrote: Igor, I don't appreciate your accusations. This is not at

Re: [Wicket-user] Cayenne advantages

2005-08-26 Thread Gili
Igor Vaynberg wrote: Sounds to me like you are claiming a problem with hibernate when in fact it is not - it is a problem with the way YOU configured hibernate. If you read section 19.2 of the reference - that's the section titled second level caches - you would've seen a list of commonly used

[Wicket-user] DatePicker and Wicket 1.1b3

2005-08-26 Thread Nick Heudecker
Also, the forminput example that uses the DatePicker throws an exception on the wicket.sf.net site. -- Forwarded message -- From: Nick Heudecker [EMAIL PROTECTED] Date: Aug 26, 2005 1:50 PM Subject: DatePicker and Wicket 1.1b3 To: wicket-user@lists.sourceforge.net Hi again: I

Re: [Wicket-user] Cayenne advantages

2005-08-26 Thread Gili
Right, like I said in my previous email, I stand corrected. It's what I meant but obviously the terminology I used was incorrect. Thank you. I just really appreciate that a lot of this stuff works easily out-of-the-box. That's all I meant to say. Gili Gwyn Evans wrote: It may be a good

RE: [Wicket-user] Cayenne advantages

2005-08-26 Thread Igor Vaynberg
It isnt even the default implementation, that is it is not enabled by default. You still have to configure cayenne to use it. -Igor -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Gwyn Evans Sent: Friday, August 26, 2005 11:45 AM To:

RE: [Wicket-user] Cayenne advantages

2005-08-26 Thread Igor Vaynberg
There is a distinct difference between saying negative things about a *product* versus saying negative things about a *person*. Please make this distinction in the future. How righteous... (don't mention the word bug on their discussion forum or else they will ban you. No joke!).

Re: [Wicket-user] Poolable pages

2005-08-26 Thread Eelco Hillenius
I just read a few chapters of Bitter EJB. A large part of the book is about how to avoid state. Allthough stateless session beans were not designed to be that important, they now play a central role in J2EE. The consequence is that large parts of the J2EE community got back to procedural

RE: [Wicket-user] DatePicker and Wicket 1.1b3

2005-08-26 Thread Igor Vaynberg
Are you referring to the java.lang.IllegalStateException: No Page found for component [MarkupContainer [Component id = messages, page = No Page, path = messages.FeedbackPanel$MessageListView]] exception? -Igor -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]

Re: [Wicket-user] Re: expand emty tags

2005-08-26 Thread Juergen Donnerstag
We used to have that some time ago and users complaint about the magic, which didn't fit there use case. Currently it is easy: we do not automatically convert span/ into span. We do not change any tag automatically. And because a span/ has no body, onComponentBody is not called either. Juergen

Re: [Wicket-user] Cayenne advantages

2005-08-26 Thread Gili
I give up. You keep on insulting me for no reason and I *still* don't direct any insults towards you. Please, just drop it. I brought this discussion up in the Wicket mailing list because I wanted to know what people's experiences were in the context of webapp development. I felt it made

Re: [Wicket-user] DatePicker and Wicket 1.1b3

2005-08-26 Thread Nick Heudecker
No, I'm referring to the much more interesting: java.lang.NoClassDefFoundError wicket.extensions.markup.html.datepicker.DatePicker.init(DatePicker.java:169) wicket.examples.forminput.FormInput$InputForm.init(FormInput.java:133)

RE: [Wicket-user] Cayenne advantages

2005-08-26 Thread Igor Vaynberg
I brought this discussion up in the Wicket mailing list because I wanted to know what people's experiences were in the context of webapp development. I felt it made more sense to ask end-users for their opinions than to ask on the Cayenne or Hibernate mailing lists whose users are

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

2005-08-26 Thread Scott Sauyet
Bump. I'm hoping someone might have five minutes to give this a test, so I know if I should file a bug report. Thanks, -- Scott P.S. Sorry to push, but I'm going offline for the weekend in ninety minutes or so... Scott Sauyet wrote: I wrote: [when I overwrite my WAR file] Tomcat

Re: [Wicket-user] wicket:link not removed when i set getSettings().setStripWicketTags(true) 1.1.b3

2005-08-26 Thread Juergen Donnerstag
please open a bug for it. thanks Juergen On 8/26/05, pepone pepone [EMAIL PROTECTED] wrote: wicket:link tag is not removed when i set getSettings().setStripWicketTags(true) 1.1.b3 --- SF.Net email is Sponsored by the Better Software

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

2005-08-26 Thread Igor Vaynberg
Confirmed... Server version: Apache Tomcat/5.5.9 Server built: Mar 26 2005 02:21:04 Server number: 5.5.9.0 OS Name:Windows XP OS Version: 5.1 Architecture: x86 JVM Version:1.5.0_01-b08 JVM Vendor: Sun Microsystems Inc. -Igor -Original Message- From: [EMAIL

Re: [Wicket-user] DatePicker and Wicket 1.1b3

2005-08-26 Thread Eelco Hillenius
It seems we have brought out a totally broken build. Applaus to ourselves. Did /anyone/ actually test the recent changes at all? Feedback doesn't work /at all/ it seems (at least not with head, but I tried 1.1b3 too). We need to get out a new build this weekend. One that works. One that is

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

2005-08-26 Thread Scott Sauyet
Igor Vaynberg wrote: Confirmed... Thanks. I'll file a bug report. If anyone can see something I'm doing wrong, please let me know. -- Scott --- SF.Net email is Sponsored by the Better Software Conference EXPO September 19-22, 2005

Re: [Wicket-user] DatePicker and Wicket 1.1b3

2005-08-26 Thread Nick Heudecker
Feedback is working here, but that could be dumb luck rather than my impressive coding skills. :) On 8/26/05, Eelco Hillenius [EMAIL PROTECTED] wrote: It seems we have brought out a totally broken build. Applaus to ourselves. Did /anyone/ actually test the recent changes at all? Feedback

RE: [Wicket-user] DatePicker and Wicket 1.1b3

2005-08-26 Thread Igor Vaynberg
Im running HEAD. Don't know about b3. -Igor -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Eelco Hillenius Sent: Friday, August 26, 2005 1:20 PM To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] DatePicker and Wicket 1.1b3

Re: [Wicket-user] DatePicker and Wicket 1.1b3

2005-08-26 Thread Eelco Hillenius
Confirmed. Sorry about the bitter remark. 1.1b3 is fine. The problem is related to the latest change in Component. Eelco On 8/26/05, Eelco Hillenius [EMAIL PROTECTED] wrote: So: java.lang.IllegalStateException: No Page found for component [MarkupContainer [Component id = messages, page =

Re: [Wicket-user] Re: expand emty tags

2005-08-26 Thread Gwyn Evans
Hmm, sounds logical when you put it that way! :-) /Gwyn On 26/08/05, Juergen Donnerstag [EMAIL PROTECTED] wrote: We used to have that some time ago and users complaint about the magic, which didn't fit there use case. Currently it is easy: we do not automatically convert span/ into span. We

Re: [Wicket-user] Cayenne advantages

2005-08-26 Thread Phil Kulak
Gili, don't think that just because you are not directly insulting someone that they have no right to be angry with you and possibly say something to you that you find insulting. In your mind open source developers have an obligation to see that you are properly educated about all aspects of their

Re: [Wicket-user] Re: expand emty tags

2005-08-26 Thread Phil Kulak
Yea, but span/span also has no body. On 8/26/05, Juergen Donnerstag [EMAIL PROTECTED] wrote: We used to have that some time ago and users complaint about the magic, which didn't fit there use case. Currently it is easy: we do not automatically convert span/ into span. We do not change any tag

Re: [Wicket-user] Re: expand emty tags

2005-08-26 Thread Juergen Donnerstag
hmm? the body is isn't it? On 8/26/05, Phil Kulak [EMAIL PROTECTED] wrote: Yea, but span/span also has no body. On 8/26/05, Juergen Donnerstag [EMAIL PROTECTED] wrote: We used to have that some time ago and users complaint about the magic, which didn't fit there use case. Currently it is

[Wicket-user] jetty and wicket1-1b3

2005-08-26 Thread flemming
I am driving myself crazy about this problem. When running wicket in tomcat this small little HelloWorld works just fine. Pressing submit button updates Label and TextField. but when running with Jetty both the label and the content of the textfield is empty after pressing submit Do

Re: [Wicket-user] wicket:link not removed when i set getSettings().setStripWicketTags(true) 1.1.b3

2005-08-26 Thread pepone pepone
I open a new bug with this issue https://sourceforge.net/tracker/index.php?func=detailaid=1274320group_id=119783atid=684975 On 8/26/05, Juergen Donnerstag [EMAIL PROTECTED] wrote: please open a bug for it. thanks Juergen On 8/26/05, pepone pepone [EMAIL PROTECTED] wrote: wicket:link tag

Re: [Wicket-user] Re: expand emty tags

2005-08-26 Thread Phil Kulak
Hmm... it would make sense if there were a distinction between the empty string and null in XML. You're probably right. On 8/26/05, Juergen Donnerstag [EMAIL PROTECTED] wrote: hmm? the body is isn't it? On 8/26/05, Phil Kulak [EMAIL PROTECTED] wrote: Yea, but span/span also has no body.

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

2005-08-26 Thread Johan Compagner
i will check it tomorrow, i think i can get some time for it to dig into it why it happens. johan Scott Sauyet wrote: Igor Vaynberg wrote: Confirmed... Thanks. I'll file a bug report. If anyone can see something I'm doing wrong, please let me know. -- Scott

Re: [Wicket-user] DatePicker and Wicket 1.1b3

2005-08-26 Thread Nick Heudecker
Anybody have any thoughts about my DatePicker issue? --- SF.Net email is Sponsored by the Better Software Conference EXPO September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices Agile Plan-Driven Development * Managing

Re: [Wicket-user] DatePicker and Wicket 1.1b3

2005-08-26 Thread Eelco Hillenius
I'm looking into it. Eelco On 8/26/05, Nick Heudecker [EMAIL PROTECTED] wrote: Anybody have any thoughts about my DatePicker issue? --- SF.Net email is Sponsored by the Better Software Conference EXPO September 19-22, 2005 * San

Re: [Wicket-user] DatePicker and Wicket 1.1b3

2005-08-26 Thread Nick Heudecker
Thanks! On 8/26/05, Eelco Hillenius [EMAIL PROTECTED] wrote: I'm looking into it. Eelco On 8/26/05, Nick Heudecker [EMAIL PROTECTED] wrote: Anybody have any thoughts about my DatePicker issue? --- SF.Net email is Sponsored by

Re: [Wicket-user] TypeValidator doesn't check if a date is valid

2005-08-26 Thread Eelco Hillenius
Actually, it's both. It's on DateFormat, as that is what we use in Wicket. However DateFormat uses an instance of Calendar: public void setLenient(boolean lenient) { calendar.setLenient(lenient); } :) Sorry, couldn't resist being a smart ass. Eelco

Re: [Wicket-user] jetty and wicket1-1b3

2005-08-26 Thread flemming
After a little more investigation...it seems that both Firefox and Inet explorer looses the jsessionId... after the first page. Flemming flemming wrote: I am driving myself crazy about this problem. When running wicket in tomcat this small little HelloWorld works just fine. Pressing

Re: [Wicket-user] Character encoding problem

2005-08-26 Thread Johan Compagner
so on disk on the server that file is writen in 8859-1 but with a unicode $C3A4 ? why not directly with a $E4? As it should if E4 is the 8859-1 value of th a-umlaut? johan Stefan Lindner wrote: Dear wicket wizzards, I have a character encoding problem (with wicket 1.1beta2 and 1.1beta3).

Re: [Wicket-user] TypeValidator doesn't check if a date is valid

2005-08-26 Thread Phil Kulak
haha, I stand corrected. :) On 8/26/05, Eelco Hillenius [EMAIL PROTECTED] wrote: Actually, it's both. It's on DateFormat, as that is what we use in Wicket. However DateFormat uses an instance of Calendar: public void setLenient(boolean lenient) {