Jump to content

BridgeWay

Members
  • Posts

    2
  • Joined

  • Last visited

BridgeWay's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Thank you for the reply! Unfortunately the script did not update CON1's value. Does the fact that this script is running in a details page change what should be used in the following line? document.getElementById("caspioform").onsubmit=con1; Should "caspioform" be changed to something like "caspiodetailspage" That is the only thing I can think of as to why CON_1 is not being updated. Thanks again for the help! I really appreciate it!
  2. I want to create a JS if statement that updates a fields value based on another fields value. If the field Virtual2 does not equal "Don't Share" I want the field CON_1 to equal Virtual2 Here is what I used unsuccessfully in the footer of a details page in a tabular report data page... <SCRIPT LANGUAGE="JavaScript"> function con1() { var v2 = parseFloat(document.getElementById("InsertRecordVirtual2").value); if(v2="Don't Share") {} else {document.getElementById("InsertRecordCON_1").value = (v2);} } document.getElementById("caspioform").onsubmit=con1; </SCRIPT> CON_1 is a text data type and Virtual2 is a virtual field drop down that on default = "Don't Share" Thanks Guys! Any help would be greatly appreciated!
×
×
  • Create New...