解決済み
simple format script
Hi I've got format script:
event.value = util.printf("%,2.0f",event.value).toString().replace(/\./gim," ");
Please help, how to change it, because now if there is no data, result is '0', should be empty.
Thanks !
wieslaw
Hi I've got format script:
event.value = util.printf("%,2.0f",event.value).toString().replace(/\./gim," ");
Please help, how to change it, because now if there is no data, result is '0', should be empty.
Thanks !
wieslaw
After this line add:
if (event.value == "0") event.value = "";
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.