I am creating a fillable order form for my company that can be distributed to all our clients. Some of the items must be ordered in multiples of 5 and some in multiples of 3. Is there a way to use a validation pattern in LiveCycle Designer to force customers to use multiples of 5 (i.e. they should only be able to enter 5, 10, 15, 20.... instead of 1, 2, 3, 4....)
Views
Replies
Total Likes
Try to place this in the exit event of the field where you want multiple of 5 needs to be entered.
if(mod($.rawValue,5) ne 0) then
$host.messageBox("Not a valid Value");
$host.setFocus($.name);
endif
Replicate the same for multiples of 3..
Thanks
Srini
Views
Replies
Total Likes