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

  1. gregotte

    XML Object not being initialized

    Ok, here is the situation. I have a web page that has some in-line XML that is generated from backend c#. This is working just fine. The page also contains some JavaScript that parses the XML. Everything works part of the time. The main problem is the XML object doesn't get initialized every...
  2. gregotte

    Page breaks on printed HTML doc.

    Is there a way I can force a page break in a html doc when it is printed? I thought I remebered a tag that does this. (The style tag pageBreakAfter doesn't work for this)
  3. gregotte

    Data Validation

    Check out http://javascript.internet.com/forms/email-address-validation.html for more info on emial-validation. -G
  4. gregotte

    Publishing .SWF files in Front Page 2000

    Just 'import' the SWF file into you web site.
  5. gregotte

    How to disable the close option in the corner of the window.

    Another options on the onLoad event open another window of the same thing and pass the data over to it. (This will be very annoying!!)
  6. gregotte

    Tricky Little Problem

    One thing I usually do is give each field a unique name. Assign the fields a letter, then add the row number to it. line1 delivery1 qty1 partid1 description1 date1 Then when you add the next line rename change the names to line2 delivery2 and so forth. You can use 'delivery' + iLineNumber to...
  7. gregotte

    How to find if a child window is open or not?

    Creat a global variable and set it to 0. var vPopUpWindow = 0; When you call the popup window do this. vPopUpWindow = window.open(. . . The in you submit button code (You will have to trap the button click.) try this. if (vPopUpWindow != 0 & !vPopUpWindow.closed) { return false; } else...
  8. gregotte

    Requesting data from the server

    Is there a way to request data from the server with javascript? I need to make a request to the server to solve some complex calculations and then display the return value. I don't want to have to reload the entire javascript each time.

Part and Inventory Search

Back
Top