Hi all,
I created 2 custom fields for Quote Products in orde to calculate price
from buying price (CFCBuypric) and markup (CFPMarkup, picklist). Then I
wrote a script which should calculate price when markup is chosen from
picklist.
The example is
switch (event.srcElement.returnValue) {
case '1':
crmForm.priceperunit.value=crmForm.CFCBuyprice.value*1.05;
...
}
However IE gaves scripting error message:
Error: 'CFPMarkup' undefined
I'm confused because I thought I had followed every rule described on
MSDN and this Usenet group
Any help?
Thanx