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 Chriss Miller 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: kuolung
  • Content: Threads
  • Order by date
  1. 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...
  2. 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.
  3. 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...
  4. 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!!!
  5. 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...
  6. 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...
  7. 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!!!!...
  8. kuolung

    generate attachment in CFMAIL, please help

    I know that in CFMAIL you can send attachment for file which already pre existed. however, how to make CFMAIL content as an attachment (for example as html file) and as the same time, send out email???? Any help would be apprciated. Thanks.
  9. kuolung

    help with format text in CF

    the result my query is simple by just printing the name like this: name ------------- smith,john jones,sue however, what function in CF can i use to put the extra space after the comma (,) in all the names. Thanks.........
  10. kuolung

    Javascript and CF for 3 level narrow down search, pls help!

    the following is what i have in my code, it works now for 2 levels. Now, i want to 3rd level drill down derived from the 2nd level. To make it clear, here is what i have: I have a dropdown list #1 populated from the table (A, B, C,...), once i select item A, it will list out all the subgroup...
  11. kuolung

    CFTREE and CFLOOP...pls help!

    ok, here is what i have: <cfquery name=&quot;orgs&quot; datasource=&quot;#mydsn#&quot;> select distinct organization as org from orgs order by 1 </cfquery> <cfquery name=&quot;groups&quot; datasource=&quot;#mydsn#&quot;> select distinct organization as org, organizational_group as group...
  12. kuolung

    please help me with CFTREE

    i follow all the help and examples how to generate CFTREE, but I couldn't find where i can have the tree folder clickable and expanding to the next level and so on. For example, I want to have a Close Folder, whenever I click on it, it'd change to Open Folder and list all the CFTREEITEM within...
  13. kuolung

    substring or trim a text in coldfusion- help me

    hello, select account_manager, account_coordinator from account where id = 'acct04' the result will be account_manager account_coordinator -------------------- ---------------------- smith,john_MGR jones,sue_COOR what function in CF can i use to take out the trailing...
  14. kuolung

    default NVL value..please help.

    i want to print out default value to 0 if the field is NULL with this sql <cfquery name=&quot;q_file_info&quot; datasource=&quot;mydns&quot;> select nvl(html_files,'0') as html_files, nvl(pdf_files,'0') as pdf_files from file_info </cfquery> <cfoutput> HTML files : #q_file_info.html_files#...
  15. kuolung

    cfmail and looping ???

    I'm just starting to learn CF, and i have this project : send out email to each student with information on each of the class they are taking, each student can and will have more than 1 class. so far here's what i have: <cfquery name=&quot;email_list&quot; datasource=&quot;webcf&quot;> select...
  16. kuolung

    validate date

    any script out there if date entered older than 01/01/1900 is invalid? (input format is mm/dd/yyyy) Thank you so much.
  17. kuolung

    date validation to DD-MON-YY

    hello everyone, does any of you know any codes out there to validate any types of entry date such as mm/dd/yyyy, ddmmyy, etc...to DD-MON-YY (07-MAR-01). I found codes that do the other way around, but couldn't find one that does a conversion to DD-MON-YY, when you enter for example, mm/dd/yy...
  18. kuolung

    how to calculate SUBTOTAL/TOTAL on count(*)

    hello, here the data i have in my table with this select query: select name, date, count(*) from mytable group by name, date order by name name date count(*) ------ --------- ---------- john 01/01 3 john 02/01 1...
  19. kuolung

    radio button selection opens new page w/o submission? PLEASE Help me!

    <script language=&quot;JavaScript&quot;> function oneButton() { var radiobut = document.the_form.V2; if (radiobut.checked == true) { document.the_form.V2.checked = false...

Part and Inventory Search

Back
Top