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 SkipVought 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. zeert2002

    Date format

    Thanks for answering Jeff. But do you know what this mean? "16:39:00.603-07:00" I think 16:39:00 is the time but i don't understand anything after that. Does anybody know? Thanks.
  2. zeert2002

    Date format

    Hi how would I get this time format in javascript? This format was from Java: "2008-05-09T16:39:00.603-07:00" Any help is greatly appreciated.
  3. zeert2002

    XSD question

    I tried what you typed but it gave me an error stating that minOccurs is equal to 0 or 1. These are the only two allowable values. Thanks for replying.
  4. zeert2002

    XSD question

    Sorry, but I have another question. My question now is what is the syntax to make it so that the minoccur on the id is 2 and the order doesn't matter. I tried doing this but it gave me an error. Thanks. <xs:element name="someName"> <xs:complexType> <xs:all> <xs:element ref="id"/...
  5. zeert2002

    XSD question

    Thanks a lot. I should have know. duh.
  6. zeert2002

    XSD question

    Hi, I have a question regarding XSD. I have this format in my xsd: <xs:element name="someName"> <xs:complexType> <xs:sequence> <xs:element ref="id"/> <xs:element ref="firstName"/> <xs:element ref="lastName"/> </xs:sequence> </xs:complexType> </xs:element> So this...
  7. zeert2002

    Get text node

    Hi, I'm trying to achieve the effect that most browsers except for Safari removed. I'm trying to grab the actual text node when a user click on a text inside an html page. function getNode(ev) { //When a user clicks on a text, IE and FF will print out '1', while it's supposed to be '3'...
  8. zeert2002

    Need help with max

    Hi I need help with the max function. How do I get the max of the queries result in sql? my query is: select val from table where id in(3,4); It will give me two values. From this what should I add so that it will give me only 1 value and that value is the max of the two? Thanks.
  9. zeert2002

    XSD

    Hi, can anybody help me with this xsd rule? I have this rule in my xsd file: <xs:element name="id" type="xs:long"/> In my xml file, this is not acceptable because it says '' is not an integer: <id></id> Is there a way in to specify a xsd rule to allow empty content? Thanks
  10. zeert2002

    Session

    Hi, I'm currently trying to test my jsp page. Does anybody know if it's possible to insert information into the server session with a client side application and the server will then use that information to process as if it has been called by request.setAttribute in a servlet? Thanks.
  11. zeert2002

    Reload function

    Hmm, I've tried removing it and it still does not work on my ie 6. Well, I don't think explorer is setting the window.name correctly. Thanks for the reply.
  12. zeert2002

    Reload function

    My firefox error console did not give any errors. This is so weird. I'm tryin to reload, not refresh, the page on visit. Thanks.
  13. zeert2002

    Reload function

    Hi, I really need help with this weird problem with the reload function. I'm trying to reload a page if that page is visited. Here is my code: if(window.name=="TEST"){ window.name=""; } else{ window.name="TEST"; javascript:location.reload(true); } My problem is this. In firefox, it works...

Part and Inventory Search

Back
Top