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 Wanet Telecoms Ltd 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 nalbiso

  1. nalbiso

    Help with date

    That worked. Thanks for the help! [thumbsup]
  2. nalbiso

    Help with date

    Thanks for replying. Actually startdate is the textbox where the customer puts in the date (in format mm/dd/yy). There are two textboxes. startdate and startingdayofweek, in which I would like the day of the week to appear depending on what date the customer puts in the startdate field.
  3. nalbiso

    Help with date

    Hello, I need help with a date processing function. I have a form where my customers will put in a date (in format mm/dd/yy). But I want that date to be used to update another field on the form with just the day of the week only. I've tried this: <script type=&quot;text/javascript&quot;>...
  4. nalbiso

    Hello, I need help with a date

    Hello, I need help with a date processing function. I have a form where my customers will put in a date (in format mm/dd/yy). But I want that date to be used to update another field on the form with just the day of the week only. I've tried this: <script type=&quot;text/javascript&quot;>...
  5. nalbiso

    Word/RTF - Different problem.

    Ok, I am having a new RTF problem. Now the page displays in both browsers but only shows one record in the table. Any suggestions would be greatly appreciated. Thanks! <link rel=&quot;stylesheet&quot; href=&quot;css/intranet.css&quot; type=&quot;text/css&quot;> <CFQUERY...
  6. nalbiso

    RTF - HELP!!!!

    Need Help! I have written the following code to display an rtf report for my site. It downloads and displays fine using Netscape. But just shows a bunch of garbage in IE. Can anyone tell me what's wrong before I yank out every strand of hair from my head? :) Thanks...
  7. nalbiso

    Looking for a better way to update a shopping cart

    I understand what you're saying. I originally had the code written that way. But that forces you to update one item in the cart at a time. I don't want to do that. I want to allow my customers to change quantities of multiple items and then be able to click on &quot;Update&quot; to update all...
  8. nalbiso

    Looking for a better way to update a shopping cart

    My problem is with updating. I am able to add new items in fine. The error I get is: Error Diagnostic Information An error occurred while evaluating the expression: session.MyCart[i].subtotal = form.price * form.quantity Error near line 18, column 24...
  9. nalbiso

    Looking for a better way to update a shopping cart

    Here's the Cart: ------------------------------------------------------------ [code] <script language=&quot;Javascript&quot;> function JumpToCat(){window.location=&quot;catalog.cfm&quot;;} function JumpToCheckOut(){window.location=&quot;Checkout.cfm&quot;;} </script> <cfinclude...
  10. nalbiso

    Looking for a better way to update a shopping cart

    Here's the Cart: ------------------------------------------------------------ <script language=&quot;Javascript&quot;> function JumpToCat(){window.location=&quot;catalog.cfm&quot;;} function JumpToCheckOut(){window.location=&quot;Checkout.cfm&quot;;} </script> <cfinclude...
  11. nalbiso

    Looking for a better way to update a shopping cart

    Oops. Sorry, I was trying something different when I post this code and didn't change it back. Here's what I have: ----------------------------------------------------------- <cfset i = 1> <cfloop from = &quot;1&quot; to =&quot;#ArrayLen(session.MyCart)#&quot; index=&quot;i&quot;> <!--- set new...
  12. nalbiso

    Looking for a better way to update a shopping cart

    Hello, I am attempting to write a script to update a shopping cart. I have the following code: -------------------------------------------------------------------------------------------------- <cfloop from = &quot;1&quot; to =&quot;#ArrayLen(session.MyCart)#&quot; index=&quot;count&quot;>...
  13. nalbiso

    ColdFusion Graph not displaying in Netscape -- WHY???

    Thanks for the response. I figured out the problem on my own after a long walk. :)
  14. nalbiso

    ColdFusion Graph not displaying in Netscape -- WHY???

    Hello, I have created a graph in coldfusion (fileformat=flash) but it won't display in Netscape. Does anyone know why? Thanks! <!-- Calling graph tag --> <cfgraph Type=&quot;Pie&quot; query=&quot;grandtotal&quot; ValueColumn=&quot;gtotal&quot; itemcolumn=&quot;Status&quot...
  15. nalbiso

    PLEASE HELP!! Radio button problem

    Sorry, I was moving stuff around trying to get this to work when I copied the Javascript. This one works: <Script Language=&quot;Javascript&quot;> <!-- Begin function checkRadios() { var el =...

Part and Inventory Search

Back
Top