Re: Re: AW: More control over Cform Date Conversion

2009-02-06 Thread Edward Elhauge
What Marico says below seems to be true. I've gotten this far and it's a dead end. Does 2.2 have a way around this? If not, is there any planed improvement in this model? Maybe the new lenient="false" tag will solve my immediate problem but I don't think a framework should change the users input s

AW: Re: AW: More control over Cform Date Conversion

2009-02-05 Thread Merico Raffaele
NOT ignored! // ------ function isDate(val,format) { var date=getDateFromFormat(val,format); if (date==0) { return false; } return true; } Hope this helps ... Raffaele -Ursprüngliche Nachricht

Re: AW: More control over Cform Date Conversion

2009-02-04 Thread Edward Elhauge
Thanks, A good trick. Almost does what I want. Problem below. Well spoken Merico Raffaele wrote: >Hi Edward > >To access the entered value in a CForm I use the following construct based >on a personal server side javascript function. > > > > ...=09 > > >

AW: More control over Cform Date Conversion

2009-02-04 Thread Merico Raffaele
Hi Edward To access the entered value in a CForm I use the following construct based on a personal server side javascript function. ... return checkFormInputDate(widget); functio