Avatar

Level 10

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