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 SkipVought 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: *

  1. kuolung

    check n number of checkboxes

    Thanks. Got it.
  2. kuolung

    check n number of checkboxes

    Please advise me on how to do a toggle to select a certain number of checkboxes based on my dropdown list (50,100,150,etc...) Say I have a dropdown box with options to select with values: 50, 100, 150, and so on. What I would like to do is when I select "50" from the dropdown list, the FIRST...
  3. kuolung

    cfloop startrow and endrow questions

    FALCONSEYE, Much appreciated for your prompt response! I'll give it a try.
  4. kuolung

    cfloop startrow and endrow questions

    I would like to send out 10 emails at the time select from table with N results. Is there an easy way to do with cfloop startrow and endrow dynamically, say when it completes first 10 records, it starts next 10, and so on or until it reaches recordcount? thanks so much in advance for any helps.
  5. kuolung

    xsl template for comma separated data

    Thanks both k5tm & JontyMC !!! I got it to work!
  6. kuolung

    xsl template for comma separated data

    hello, please help !!!! I'm new to xml and xsl. i have the data in comma delimited list: <dispositionMethod>ST,DE,OT</dispositionMethod> the data are not always in this order, however, i want to parse each field to something as for option checkbox list in my XSL with output: match ST...
  7. kuolung

    Set all of select and/or text boxes to the same value??

    Thank you both feherke & monksnake for giving me more helpful information, i'm still working on the codes to make it optimal for my problem. Thank you so much!!!
  8. kuolung

    Set all of select and/or text boxes to the same value??

    thank you so much feherke !!! your codes work so well for my problem. you saved my day !!! Again, much appreciated your help!! kudos to both feherke and monksnake!!!
  9. kuolung

    Set all of select and/or text boxes to the same value??

    it doesn't work, and I get no javascript error? something is missing? please help! <script> function setAllValues() { var quantityAllValue = document.getElementById("keySHIPMENT_QUANTITY").value; var inputArray = document.getElementById("contentDiv").getElementsByTagName("input"); var...
  10. kuolung

    Set all of select and/or text boxes to the same value??

    here is my html code, and also I'm testing out monksnake's suggestion.. <table cellpadding="0" cellspacing="0" border="0" style="width: 700px; position: relative; float: left;" class="topBorder"> <tr> <td class="pad2px" width="200">Set all of the below to:</td> <td class="pad2px"...
  11. kuolung

    Set all of select and/or text boxes to the same value??

    Does anyone have the script that can set all select boxes or text to the same value? I need to set up for something looks like the screen design below: Thanks so much in advance!!! Your help/hint would be greatly appreciated!!!
  12. kuolung

    deselect others in mutiple selection list..

    Thanks so much.. it works well!
  13. kuolung

    deselect others in mutiple selection list..

    I have this scenerio. I have a multiple selection list of Countries, however, when US (country_id = 1) is selected, I want to deselect all other countries. In other words, EITHER you select US only OR you select other countries (but US). Does anyone has a javascript that can do such thing or any...
  14. kuolung

    how to output this using cfoutput group?

    THANKS r937!!! IT WORKS! THANK YOU SO MUCH !!!
  15. kuolung

    how to output this using cfoutput group?

    i have "ORDER BY id, state, article" yeah, i just changed to one CFOUTPUT with GROUP=STATE but how to i output when it's a multi-state, again like this: STATE ARTICLE AK, CA bug plant thanks!! please help!
  16. kuolung

    how to output this using cfoutput group?

    I have a query result as followed: ID, STATE, ARTICLE 1 AK bug 1 AK plant 1 CA bug 1 CA plant 2 NY fly . . how to do I output the STATE column output when it's a multi-state and separate each state by a comma? i want to output like this: STATE ARTICLE AK...
  17. kuolung

    javascript to validate date???? please help

    well, here is what i have so far (only for mm/dd/yyyy) Please help me with the other 3 allowable formats : mm/yyyy mmm dd, yyyy yyyy thanks.... ----- <script> function validateForm() { dateCheckMsg = checkDate(document.searchchoice.beg_date_val.value); if (dateCheckMsg.length > 0) {...
  18. kuolung

    javascript to validate date???? please help

    thank you so much! however, seem like it only checks one format which is mm/dd/yyyy What should i change or add to make it validates all 4 format scenerios: mm/dd/yyyy mmm dd, yyyy (e.g. aug 13, 1999) mm/yyyy yyyy Any advices? please help...i'm just a novice in javascript ...
  19. kuolung

    javascript to validate date???? please help

    FAQs most links are outdated! please help!
  20. kuolung

    javascript to validate date???? please help

    does anyone have or know javacript that can do validate the date in these 4 formats: mm/dd/yyyy mmm dd, yyyy (aug 13, 1999) mm/yyyy yyyy please help!! Thanks!!!!...

Part and Inventory Search

Back
Top