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!

Search results for query: *

  1. 4345487

    Ca I do this with java script

    Thanks, You are correct javascript is in the client side and the database is in the server I will try something else Thanks again
  2. 4345487

    Ca I do this with java script

    Here is what I'm try to do. I have allop reading records from a database with the data I'm create a list HTML where XXXXXX is the value from the database is a way that I can send that value to a JavaScript function inside teh loop before apply the results <table border="0" cellpadding="0"...
  3. 4345487

    Popup window problem

    Hi, I have a page with a link to open a popup window created with JavaScript I will insert the code below it works OK in IE6 and FireFox but when I run it in IE7 the popup window always opens behind the parent window did anybody else have this problem. Thanks with any help. // This function...
  4. 4345487

    Popup window question

    Hi, I search this forum but find no answer so here it goes. I have a popup window that I want to close when the user clicks the X icon only. Is any way to detect if the user click the X icon the onUnload works but I have links in the page to do search pagination and when I click in one of the...
  5. 4345487

    Close popup window

    Hi, Anybody knows if there is a way to send a message to the parent window if a popwindow is close using the X or is there anyway to disable the X in the right hand conner Thanks
  6. 4345487

    Help rounding a number

    Hi, This maybe a strange question but I need to do this. I want to round a number alwasy to the hights value. Example: If I have a number 5.7 I wnat to round to 6 If I have a number 5.3 I also wante to round it to be 6 not 5 Thanks
  7. 4345487

    Date validation problem

    I want to thank everyone for your time and help Thanks
  8. 4345487

    Date validation problem

    I expected an error from the code below but it does no go to the catch section any ideas Thanks SimpleDateFormat inputVal = new SimpleDateFormat("MM/dd/yyyy"); try { Date date = inputVal.parse("99/99/2006"); } catch (ParseException e1) { System.out.println("Invalid date.."); }
  9. 4345487

    Email validation

    Thank you you all for your help.
  10. 4345487

    Question about &lt;DIV

    Yes I did You correct I did have two fields with the same ID Thanks for all your help
  11. 4345487

    Email validation

    Hi, Maybe someone can help me with this email validation alert( ((/\w+((-\w+)|(\.\w+)|(\_\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z]{2,4}/).test(email))); I want the values after the dot to no less that 2 and no more that 4 so I use {2,4} if I enter test@test.c it returns false which...
  12. 4345487

    Question about &lt;DIV

    Hi, I have a <div tage in my jsp form like <div id="srch_regular" style="display:block"> in Java script I do this to hide the table document.getElementById("srch_regular").style.display = "none"; It works OK in IE but in Firefox does not work any ideas Thanks
  13. 4345487

    Reg exp sample

    Hi, I'm tryng to write a regular expresion that will check that a string has a lentgh of a least 8 and must contain one digit or special character but so far I've had no luck any suggestions or sample will be appreciated Thanks
  14. 4345487

    Date format

    Hi, I been looking at all the date samples in the forum but I can't find the a sample of how to format this date Sat Dec 23 00:00:00 EST 2006 to this format mm/dd/yyyy Thanks for any help
  15. 4345487

    Date Format

    Hi, I beent trying to format this date Sat Dec 23 00:00:00 EST 2006 to mm/dd/yyyy with no luck any help will be appreciated
  16. 4345487

    Password validation

    I did it using indexOf but I was just looking to see if it was a sample using regexp which I'm no faliar with. Thank you for the pointers.
  17. 4345487

    Password validation

    Hi, Does anybody has a sample of how to check if a string has a least one number and a special character it can have more then one but a least one of each number and special character Chico
  18. 4345487

    Email Validation

    Don't forget that you need to put the class on a package package something
  19. 4345487

    Email Validation

    You may have to import some classes

Part and Inventory Search

Back
Top