Answered
I'm very new to Java in general and am currently working on a form which will calculate simple math for various fields. Some fields will end up with a negative value, in which case I would like to have a script at the field level, replace the negative number with "0". I know this is probably a very simple thing, but would someone mind providing help, or an example for me.
Thanks,
// force event value to zero for negative result
if(event.value < 0) event.value = 0;
George Kaiser