Date Validation like "dd.MM.yyyy HH:mm"

2006-06-26 Thread Halgurt Mustafa Ali
Hello all, Well I am trying to validate a field on the clients side. The field schould be validatet as a date in this format: "dd.MM. HH:mm" but I saw that the time would not be considerd, although I initialize datePattern in validation.xml with this value "dd.MM. HH:mm", the date will

Date Validation on the Clients side

2006-06-26 Thread Halgurt Mustafa Ali
s, Halgurt -Ursprüngliche Nachricht- Von: Halgurt Mustafa Ali Gesendet: Montag, 26. Juni 2006 13:04 An: user@struts.apache.org Betreff: Date Validation like "dd.MM. HH:mm" Hello all, Well I am trying to validate a field on the clients side. The field schould be validatet as a date in this

AW: Date Validation on the Clients side

2006-06-26 Thread Halgurt Mustafa Ali
ur help, it is > really urgent. > > Best regards, > Halgurt > > -Ursprüngliche Nachricht- > Von: Halgurt Mustafa Ali > Gesendet: Montag, 26. Juni 2006 13:04 > An: user@struts.apache.org > Betreff: Date Validation like "dd.MM. HH:mm" > > &

AW: Date Validation on the Clients side

2006-06-27 Thread Halgurt Mustafa Ali
de. Server side validation should work, because that makes use of SimpleDateFormat. So unless your pattern is being cut off somewhere I would expect that to do the trick. For client side you probably will have to write the js code to check for minutes and seconds. mvg, Jasper On 6/26/06, Halgurt M

AW: Date Validation on the Clients side

2006-06-27 Thread Halgurt Mustafa Ali
hy it was done that way. On 6/27/06, Halgurt Mustafa Ali <[EMAIL PROTECTED]> wrote: > Hi, > > Ok, that means client side date validation is still not perfect. The point > is, in a big application it is very usefull to have client side validation, > even to unburden th

Object field validation

2006-06-30 Thread Halgurt Mustafa Ali
Hi all, I have a form called TASKMANAGERform and in this form I have a field called taskDefinition of type TaskDefinition. TaskDefinition has a field domain of type Integer. Is it possible to validate this field? I meen to validate taskDefinition.domain? If aes, in which way? I have tried this:

AW: Object field validation

2006-06-30 Thread Halgurt Mustafa Ali
Users Mailing List Betreff: Re: Object field validation Try Hope this may help. Halgurt Mustafa Ali wrote: > Hi all, > > I have a form called TASKMANAGERform and in this form I have a fie

AW: Object field validation

2006-07-03 Thread Halgurt Mustafa Ali
his type. Is there any way to do such a validation? I appreciate your help :-) thanks a lot, Halgurt -Ursprüngliche Nachricht- Von: Halgurt Mustafa Ali Gesendet: Freitag, 30. Juni 2006 13:04 An: Struts Users Mailing List Betreff: AW: Object field validation Hi, Sorry, I tried that also,

AW: Object field validation

2006-07-04 Thread Halgurt Mustafa Ali
ur form is returining null - so you need to ensure that the taskDefinition property is intialized first. Niall On 7/3/06, Halgurt Mustafa Ali <[EMAIL PROTECTED]> wrote: > Hallo all, > > I posted yasterday the below message. I changed my formset to: > > >

AW: Re: AW: Object field validation

2006-07-05 Thread Halgurt Mustafa Ali
in' a String instead of an integer; or use the Integer wrapper-type. If you need to be able to re-display invalid input, using String-type properties is the only solution. An integer (or Integer) property simply can't hold a value of 'm' for redisplay. L. Halgurt Mustafa A