This content has been marked as final.
Show 4 replies
-
1. Re: How do I determine which text fields contain data?
Ozzroo Apr 30, 2012 3:28 AM (in response to DarylGS)I think you may need to change your code to: (replace the '' with null). Change from FormCalc to Javascript
if (Textfield1.rawValue == null) then
var1 =0
else
var1=1
endif
-
2. Re: How do I determine which text fields contain data?
DarylGS Apr 30, 2012 11:36 AM (in response to Ozzroo)Yep! That works for me! Thanks!
The entire form was done in FormCalc. It would take too long (and beyond what I know of Javascript) to change it at this point.
Thanks again.
-
3. Re: How do I determine which text fields contain data?
Jono Moore Apr 30, 2012 2:38 PM (in response to DarylGS)1 person found this helpfulJust an FYI - you can mix and match FormCalc and JavaScript, even on the same object, just not on the same event.
Many of my forms have both, FormCalc makes some things a lot easier to do.
-
4. Re: How do I determine which text fields contain data?
DarylGS Apr 30, 2012 6:29 PM (in response to Jono Moore)THAT is something I was not aware of and is quite helpful!!! Thanks, Jono!!!