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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: crimmelcp
  • Order by date
  1. crimmelcp

    add field values on a form

    I got it working. Thank You I was missing the () after the function working code <SCRIPT LANGUAGE="JavaScript"> function CF_add_holiday(){ document.forms[0].tot_holiday.value = parseFloat(document.forms[0].HSM1.value) + parseFloat(document.forms[0].HSTU1.value) +...
  2. crimmelcp

    add field values on a form

    can someone send me an working example so I can figure this out. Thanks Charlie Crimmel ccrimmel@bluestarentp.com
  3. crimmelcp

    add field values on a form

    I put the {} aroung the function same result Charlie Crimmel
  4. crimmelcp

    add field values on a form

    this is the on blur code. the the total field is not updating. does this code look ok? Tharlie Crimmel <td width="1"> <CFInput name="HSM1" type = "text" size="1" value="0.00" onblur="CF_add_holiday()"></td> <td>&nbsp;</td> <td width="1"> <CFInput name="HSTU1" type = "text"...
  5. crimmelcp

    add field values on a form

    This is the update script that I am using now Does this code look ok? It is still not working, but I will post the onblur part after this. Charlie Crimmel <SCRIPT LANGUAGE="JavaScript"> function CF_add_holiday() document.Staff_Time.tot_holiday.value =...
  6. crimmelcp

    add field values on a form

    This is the code that I am trying to use, but I cannot get the form to refresh to tell if this code is working. Charlie Crimmel <SCRIPT LANGUAGE="JavaScript"> function CF_add_holiday { document.forms['Staff_Time'].elements['tot_holiday'].value =...
  7. crimmelcp

    add field values on a form

    Yes I am adding 2 numbers and I need this to happen whenever I change one of the numbers. Charlie Crimmel
  8. crimmelcp

    add field values on a form

    How do you add field values on a form field1 + field2 = field 3 when I change field 1 or 2 then field 3 changes Thanks Charlie Crimmel
  9. crimmelcp

    Purchase order application

    No: I need a purchase order application so a purchasing department can enter PO's for a Vendor, Track the receipts of items and then Accounts Payable can pay the vendor
  10. crimmelcp

    Purchase order application

    I am interested in purchasing a purchase order application in cold fusion. Anyone know of one available? Charlie Crimmel
  11. crimmelcp

    Build an array from a table or query

    The code below builds an array from a list that is keyed in. How can I convert this to use a table and a query. Charlie Crimmel ItemList = new Array() // Navigator 3.0 array object constructor ItemList[0] = new...
  12. crimmelcp

    Please another select box question

    Please help: How can I get the text boxes to populate from the select box. Thanks Charlie Crimmel <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">...
  13. crimmelcp

    select box

    I did search, but did not find an answer. Charlie Crimmel
  14. crimmelcp

    select box

    Is there a way to select a value from a select box and fill in multiple fields on a form. such as. select a product from a select box and fill in the description and price Charlie Crimmel
  15. crimmelcp

    Form will not work in flash

    I dont know, Thats why I am asking for help. Thecfselect command has a on key up and down and you should be able to use javasript of action script, but I do not know how to code them. Charlie Crimmel
  16. crimmelcp

    Form will not work in flash

    can anyone explain why this code will not run in a flash form. It has something to do with the onkeyup and on change events How can I get it to work in Flash? Thanks Charlie Crimmel <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html>...
  17. crimmelcp

    Filtering a grid from a select box

    I got everything working ok Thanks
  18. crimmelcp

    Fill in fields on a fom from a date select

    I am trying to select a date from a pop up calendar and fill in text fields for the month, day, and year. Any help would be appreciated. Thanks Charlie Crimmel <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta...
  19. crimmelcp

    Filtering a grid from a select box

    I have seen several posts where a user can filter a grid based on a select box. All the examples seem to be using arrays. I am trying to filter a grid based on a table selection. Select a company and then show all records that have that company. Below is both cfm for array and what I am trying...
  20. crimmelcp

    Syntax forrunning query from button

    What is the correct syntax for running a query from a button? Charlie Crimmel <cfinput type="button" name="ShowAll" value="Show All" onclick="query="get_corporate">" width="175">

Part and Inventory Search

Back
Top