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 strongm 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. sim777

    Exadel Struts Studio Professional Edition

    Building on the tremendous success of the first release of Struts Studio and incorporating substantial feedback from the Struts community, Exadel, Inc. has now unveiled a powerful new Web Integrated Development Environment (WIDE) for Jakarta Struts: Struts Studio Professional Struts Studio...
  2. sim777

    Opinion -- best pre-load image script?

    I prefer method that Adobe Photoshop generates for roll-over images. I.e. var preloadFlag = false; function preloadImages() { if (document.images) { anyname1 = newImage("path_to_image_1"); anyname2 = newImage("path_to_image_2"); ... preloadFlag = true; } } It...
  3. sim777

    Exadel 4.5 Struts Studio

    Struts Studio is a GUI development tool for Jakarta Struts Framework. This tool allows to create new projects from scratch or work with already existing projects. Using Struts Studio, you can view and edit struts-config.xml visually. To read more about this IDE, go to...
  4. sim777

    Client Machine Name

    No, but it is an easy job for server-side.
  5. sim777

    PopUp - download a file, close pop up and parent

    You are right. Netscape 4.* does not like when popup window tries to close it. However, even Netscape leaves without noties if the close method is calling inside the parent window. So, if you want to close parent window just after the popup appears, you can insert the following code into the...
  6. sim777

    PopUp - download a file, close pop up and parent

    The parent window available from pop-up window with using window.opener. So, you try to close parent window with window.opener.close(); However, in this way parent window will rise a message box and ask do you really want to close parent window. To avoid this message for most browser use...
  7. sim777

    Delete/Remove element

    May be the following example help you: <HTML> <HEAD> <META NAME=&quot;GENERATOR&quot; Content=&quot;Microsoft Visual Studio 6.0&quot;> <TITLE></TITLE> <SCRIPT> function DeleteThing(){ document.all.iTable.innerHTML=&quot;&quot;; } function existingTest() { alert(&quot;Table...
  8. sim777

    New to Tomcat and Apache

    Apache is a Software Foundation Organization. Read www.apache.org for details. Apache drives some Projects. One of the project is Jakarta - a Java-oriented project. Tomcat is one of the Jakarta product. Read more here - http://jakarta.apache.org/tomcat/ Regards, Sergey Smirnov...
  9. sim777

    Keeping Cursor As Arrow Over Links

    <a href=&quot;hiddenlink.html&quot; style=&quot;cursor: default&quot;>This is not a link, just underlined blue text :- )</a> P.S. Some browsers, such Netscape 4.* and Opera 6.* do not support this style. Regards, Sergey Smirnov http://forum.exadel.com
  10. sim777

    Dynamic drop down and corresponding text fields

    How many persons (e-mails) you have in your DB. If you have less than 100 records, it is possible to take them at once and put onto the page. In this way, you can use code shown above. Otherwise, if you have huge number of records or you have another reason do not show emails on page, you...
  11. sim777

    Submit the page to itself based on a condition

    When you use Response.write &quot;postagin();&quot;, it does not mean that you call javascript function posttagin() from ASP. It just means that you insert some portion of code into the result page. This code will be executed later on client site (in client browser) Browser constructs each page...
  12. sim777

    Submit the page to itself based on a condition

    ...And what is a name of your form - form1 or CheckForm?
  13. sim777

    Submit the page to itself based on a condition

    You try to submit the form when the form does not exist yet. Create a javascript function and call it from body onload Regards, Sergey Smirnov http://forum.exadel.com
  14. sim777

    Dynamic drop down and corresponding text fields

    Use value property to store e-mails and put selected value into text field when selected name is changed. Example: <form name=&quot;frm&quot;> Select Person: <select name=&quot;person&quot; onchange=&quot;document.forms.frm.email.value=this.options[this.selectedIndex].value&quot;>...
  15. sim777

    Open/Close window

    Only self.close() does not help to avoid msg box if user uses Internet Explorer. It works fine in Netscape 6.* and Opera 6.*
  16. sim777

    How do I check if an image file exists?

    One possible way is to use onload function for images. If image exists the onload events occurs. I used this method for our Product CD to check the new product version. Look the following example: <Script LANGUAGE=&quot;JavaScript&quot;> function check(imgURL) { var img=new Image()...
  17. sim777

    How to check if function returns tr

    or, just if (functionname1()) ;-)
  18. sim777

    Open/Close window

    Just a small trick :-) <Script LANGUAGE=&quot;JavaScript&quot;> var wid=window.open(.........); window.opener=wid; window.close(); </script> Regards, Sergey Smirnov Ask me directly at http://forum.exadel.com
  19. sim777

    Adding values of dynamically generated rows

    According to the source of the page, your input fields have the same name &quot;T1&quot;. At least, they should be difference, such as T1, T2, T3 Aslo: 1) Add FORM tag around the table. It is not necessarily sometimes, but some browser will ignore the input field without FORM 2) Add javascript...
  20. sim777

    How to Refresh Previous Page

    Usually, Refresh means reloading the current page into the browser. Current page is a page B in your case. What do mean when you say &quot;refresh A&quot;?

Part and Inventory Search

Back
Top