Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by runcsmeduncs

  1. runcsmeduncs

    Easy problem with function

    Hello I am fairly new to JavaScript so bare with me on this one. My function looks like this: <script language="JavaScript" type="text/JavaScript"> function checkForm(theForm){ box1 = frmHR.p_update; box2 = frmHR.p_hr_update; if(frmHR.p_update.length){ for...
  2. runcsmeduncs

    Popup and retrieval of values

    yep no worries a sample bit of table code looks like this: <HTML> <BODY> <form name="frmdept_submit" action="" method="POST"> <table border="1" cellpadding="1"> <tr> <td>Staff ID</td> <td>Dept</td> </tr> <tr> <TD> 9854758 </TD> <TD> <INPUT...
  3. runcsmeduncs

    Popup and retrieval of values

    Thats getting better but I need to change all and not just the last one. Is there some way of altering your code so that it processes the row in the for that the user selects. Currently when i run the popup after clicking on the anchor in row 1, your code changes the value in row 2 of p_dept...
  4. runcsmeduncs

    Popup and retrieval of values

    That is not an option because my html form is built up in a PL/SQL cursor FOR loop. They need to be called the same name because the array p_dept is processed in further PL/SQL procedures sitting behind the form. For this reason i need to either pass an array into the JS function or reference...
  5. runcsmeduncs

    Popup and retrieval of values

    I have a form that launches a popup when the user clicks on an anchor link. The html for the popup looks like this: <html> <head> <script language="JavaScript" type="text/javascript"> function passBack(x) { opener.document.frmdept_submit.p_dept.value= x...

Part and Inventory Search

Back
Top