Re: commas in numeric fields...

2002-12-02 Thread Ed Gordon
fatal error if they enter letter OH or any other non-numeric that I did not search for. tia Ed - Original Message - From: "Rick Root" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, November 12, 2002 8:33 PM Subject: Re: commas in numer

RE: commas in numeric fields...

2002-11-13 Thread Rob Rohan
RegEX, but I'm not the RegEX wiz. That said, anyone know of a good RegEX book? Joshua Miller [EMAIL PROTECTED] -Original Message- From: Jann VanOver [mailto:techinfo@;DragonflyGirl.com] Sent: Wednesday, November 13, 2002 4:37 PM To: CF-Talk Subject: Re: commas in numeric fields...

RE: commas in numeric fields...

2002-11-13 Thread Matthew Walker
a: give someone a hammer, and they think everything is a nail -- I've cut down on the amount of regexes in my code recently). > -Original Message- > From: Joshua Miller [mailto:josh@;joshuasmiller.com] > Sent: Thursday, 14 November 2002 10:54 a.m. > To: CF-Talk > Subject:

RE: commas in numeric fields...

2002-11-13 Thread Joshua Miller
That said, anyone know of a good RegEX book? Joshua Miller [EMAIL PROTECTED] -Original Message- From: Jann VanOver [mailto:techinfo@;DragonflyGirl.com] Sent: Wednesday, November 13, 2002 4:37 PM To: CF-Talk Subject: Re: commas in numeric fields... BBEdit has a GREAT file/directory compare fe

Re: commas in numeric fields...

2002-11-13 Thread Jann VanOver
BBEdit has a GREAT file/directory compare feature. But if you work on a Mac, you already use BBEdit, I'm sure. On 11/12/02 6:12 PM, "Ed Gordon " <[EMAIL PROTECTED]> wrote: > What do you do to display commas in numeric CFINPUT (editable) fields with > values over 999? > > For one client, I

Re: commas in numeric fields...

2002-11-12 Thread Rick Root
Ed, If there are dollar signs and commas in the value, CF's built in javascript validation functions will not work. Programmatically speaking, it's not a number if it contains non-numeric characters. You could write your own validationg and access it through the onsubmit() of the form. - R

RE: commas in numeric fields...

2002-11-12 Thread Tony Weeg
9:13 PM To: CF-Talk Subject: commas in numeric fields... What do you do to display commas in numeric CFINPUT (editable) fields with values over 999? For one client, I tried to validate numeric to avoid crashing the MS Access database by using with... validate=integer or validate=fl

commas in numeric fields...

2002-11-12 Thread Ed Gordon
What do you do to display commas in numeric CFINPUT (editable) fields with values over 999? For one client, I tried to validate numeric to avoid crashing the MS Access database by using with... validate=integer or validate=float but when I used #DecimalFormat(oldvalue.table)# or #