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

  1. jlawler

    Excel 2003 & csv file

    Hi, I've an issue saving a csv file in Excel 2003 SP2. I've created an 11 field file in Excel and saved it as csv. In this file some of the fields will not always be populated and it's often fileds 9 -11 that are left un-populated. Excel maintains csv format fine for the first 16 records...
  2. jlawler

    Post the contents of a form to a nwe window

    Thanks for that dwarfthrower.....is it possible to specify the dimensions of this window (i.e remove the toolbar, scrollbar etc.) can the window.open method be used.. ??
  3. jlawler

    Post the contents of a form to a nwe window

    I have a form that will post it's contents to a jsp (print.jsp)...but I want this jsp to open in a new window...how can I do this ??? <code> <form name=&quot;frm_print_des&quot; method=&quot;post&quot; action= &quot;<%= support.sTag(&quot;/services/print.jsp&quot;) %>&quot; > <a...
  4. jlawler

    &lt;b&gt;How to enable a text box by clicking on a radio button&lt;/b&gt;

    I have a form containing a text box (which is disabled when loaded) and a yes/no radio button pair. I want to enable the text box once the 'yes' radio option is chosen. How can I best do this?
  5. jlawler

    I have the following piece of javas

    wasnt me.... but youre right, it's not js function...I found an implementation in an included file...and managed to solve the problem... Here's the existing code function isDate (year, month, day) { if (! (isYear(year, false) && isMonth(month, false) && isDay(day, false))) return false; var...
  6. jlawler

    I have the following piece of javas

    I have no implementation for the function...here's the exact code...it just checks the date value entered in a form, it then checks that the year is between 1900 and te current year.... Are you sure &quot; isDate (year, month, day)&quot; is not a core js function ? if...
  7. jlawler

    I have the following piece of javas

    In Netscape 6.2 the javascript function does not return true. It does in Netscape 4.75 and IE. Maybe Netscape 6.2 is not backward compatible ?!?
  8. jlawler

    Netscape 6.2 &amp; built in date functions

    I have the following piece of javascript code which evaluates if the value passed into a form is a valid date or not. The code works fine in IE and Netscape 4.75, but it doesn't in Netscape 6.2. What can I do to make my code compatible to all three browser versions? <code>...
  9. jlawler

    I have the following piece of javas

    I have the following piece of javascript code which evaluates if the value passed into a form is a valid date or not. The code works fine in IE and Netscape 4.75, but it doesn't in Netscape 6.2. What can I do to make my code compatible to all three browser versions? <code>...
  10. jlawler

    Help needed hiding a radio button in Netscape

    Hi, I've hidden a radio button, by setting it's visibility to hidden. <code style=&quot;visibility:hidden;&quot; > It works fine in IE but Netscape 4.75 dosen't hide the button. I dont want to use the following <code style=&quot;display:none;&quot; > because when I do this, the radio...
  11. jlawler

    Changing an image when &quot;on MouseOver&quot;

    Hi, Why wont the following code work? I want to change the image when the mouse is moved it. <script language=&quot;JavaScript&quot; type=&quot;text/javascript&quot;> function changeImage(imgName, newSrc) { imgName.src = newSrc; } </script> <a href=&quot;/../fund/fund.html&quot...
  12. jlawler

    Help needed with &quot;onMouseOver&quot; event

    Hi, I have a piece of code, that sets up a button on a form and when this button is clicked the form is submitted. This button is implemented in a separate function, in an included file. I need to update this function, so that when the mouse is moved over the button, the image changes; and...
  13. jlawler

    Simulating a radio button click

    I have a piece of code which currently executes a particular function when a radio button is clicked. This button has to be removed(or at least hidden). How can I call this function, without actually clicking the button. Is there a way of simulating a radio button click from within the code...
  14. jlawler

    Javascript : Radio Button query

    Is it possible to put a radio button in a form that is checked when loaded, and is hidden. I want to hide the following button and have it checked by default. <input type=&quot;radio&quot; name=&quot;lc_category&quot; value=&quot;<%= productCategory.getCategoryPK() %>&quot...

Part and Inventory Search

Back
Top