Link to home
Start Free TrialLog in
Avatar of FastEddie___
FastEddie___

asked on

Validate Coldfusion Cfinput Textbox with Javascript

How does one valideate a coldfusion cfinput type=text with javascript?
It is cfinput the same as a regular html input in the way it validates?
I would like to exclude characters like * in my text areas.
I have used keyCode values but I'm having a little trouble with thes text areas in Coldfusion.
SOLUTION
Avatar of Brijesh Chauhan
Brijesh Chauhan
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Avatar of gdemaria
gdemaria
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of FastEddie___
FastEddie___

ASKER

Thank you.
First of all is there any reason for you yo use cfinput  ,

with cfinput you can use the same javacript function  and call it on the event which you were calling for input

but if you want to write your custom validation stuff i strongly feel there is no need of cfinput unless you have a other strong reason for using it.

@srikanthmadis
I'm not looking to replace what coldfusion has built in for form validation.
I am looking to enhance validiation as the user is typing by using onKeyPress.
That way I can check for certain characters and just not allow them to be typed in.

For example:

<cfinput ... onkeypress="return checkDateChars()" validate="date">

-----

function checkDateChars()
{ // 0-9, /, -
    if (    ((event.keyCode>47)&&(event.keyCode<58)) || (event.keyCode==45) || (event.keyCode==47)    )
    {
       return true;
    }
    else
       return false;
}

---

Along with the onkeypress I also would like to use the onBlur and run my own date validation functions so that the coldfusion validate="date" should never be called except when the user is trying to hack the site.

So what you're saying is that I can use all the colfdfusion tags from cfform (cfinput, cfselect,...) with regular javascript function calls???