Jump to content

Changing Hidden Values In Update Form


Recommended Posts

Hi,

 

I have an update form that contains 2 hidden fields.  Depending on the changes made in the form, the value of the hidden fields needs to change.  One of the fields is a dropdown what controls placement on a report.  I have added the following javascript to the footer.  Any changes I make to the data are saved in the table, however, the hidden fields never change.  Hopefully someone can spot the error in my code.

 

Thanks,

Bill

 

<SCRIPT LANGUAGE="JavaScript">
 
function concatenate1()
{
var Sched.Status = document.getElementById("EditRecordStatus").value;
var Control = document.getElementById("EditRecordID").value;
var Company = document.getElementById("EditRecordCompany").value;
var Company25 = Company.substring(0,25);
var Position = document.getElementById("EditRecordPosition").value;
var Date = document.getElementById("EditRecordDate_Open").value;
 
var CompanyPosition = Control + ' - ' + Company + ' (' + Position + ')';
 
document.getElementById("EditRecordCompany_Position").value = CompanyPosition;
 
if (Sched.Status == "Future Credit")
{
var DateControl = 'FC' + Date + ' - ' + Control + ' - ' + Company25;
} else {
var DateControl = Date + ' - ' + Control + ' - ' + Company25;
}
 
document.getElementById("EditRecordDate_Control").value = DateControl;
 
}
 
document.getElementById("caspioform").onsubmit=concatenate1;
</SCRIPT>
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...