473,386 Members | 1,819 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

Javascript in a PDF Form

I don't know if anyone here can help with this, but I have javascript issue in a PDF form. I have a field in the PDF form with a value of $12.00 (i.e. grandtotal). In another field in the form (i.e. Percentage) I'm trying to set the value at 80% of what the grandtotal value is. So, 80% of $12.00 is about 9.50, right? But all I get is a 0 total. The code behind the percentage field is below. Does anyone know why it doesn't work?

Expand|Select|Wrap|Line Numbers
  1. {
  2. var a = this.getfield("grandtotal");
  3. event.value = a / 0.80;
  4. }
  5.  
Thanks in advance

P.S. I using Acrobat 8 Professional
Feb 28 '07 #1
3 2079
iam_clint
1,208 Expert 1GB
var a = this.getfield("grandtotal").value;
event.value = a / 0.8;


i am assuming a pdf form is the same as a normal form.. the trailing 0 on .8 isn't needed and .value on the getfield
Feb 28 '07 #2
acoder
16,027 Expert Mod 8TB
Also, you need to multiply by 0.8 if you want 80% (but that's not a Javascript problem!)
Feb 28 '07 #3
Ha, yeah I meant multiple(*), honest. Thanks for the help, it works great.

Dean
Feb 28 '07 #4

Sign in to post your reply or Sign up for a free account.

Similar topics

0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.