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. keinloffel

    Print Page

    I am building an application using Struts with Tiles and and a generic page is like: ------------------------------------------ TopNav ------------------------------------------ | | | LeftNav | Body | | |...
  2. keinloffel

    Definitions Problem

    I tried what you said in your first response. That didnt work. For the second response, my syntax is valid. Check this out: http://www.strutskickstart.com/archives/000005.html
  3. keinloffel

    Definitions Problem

    Here's a basic page, logon.jsp ------------------------------ <%@ taglib uri=&quot;/tags/struts-html&quot; prefix=&quot;html&quot;%> <html:html> <body> <html:link action=&quot;/link1&quot;>1</html:link> </body> </html:html> ------------------------------- I'm implementing all pages as...
  4. keinloffel

    Window.opener problem

    IE 5, Win2k. My bad, I used <a href=&quot;popoup&quot; target=&quot;new&quot;> and not window.open(). How can i write that with window.open() ? Thanks
  5. keinloffel

    Window.opener problem

    I have a main window which opens a pop up window. I was trying to use window.opener to manipulate the parent window and met with some problems. So I did some error checking and put the following code in the popup: <script> mywin = window.opener alert(mywin) self.close() </script> The...
  6. keinloffel

    Storing a textfield value

    Thats Quite Brilliant. Thankyou very much. My problems seem resolved for the moment.
  7. keinloffel

    Storing a textfield value

    Thats the issue. Receiving what was in the text area without ever submitting the form. From our discussions it seems like that is not possible and I will have to revamp the design of the whole page. Darn it. I wish the developer hadn't made it this way.
  8. keinloffel

    Storing a textfield value

    Thanks for your reply. However I wouldnt like to have the form submitted. I know how to do it if the form was to be submitted. But here, the page is simply refreshed(redirected to same page) and i want to reload the same information that was entered previously. Its really weird because the...
  9. keinloffel

    HOW DO I GET MY JSPs TO LOCATE MY JAVABEAN FILES???

    I believe that your jsps are stored in the wrong folder. The jsps should only go into tomcat/WEB-INF The class files should go to tomcat/WEB-INF/classes/project1 That might be an issue
  10. keinloffel

    Storing a textfield value

    Alright. I'll try to make this clearer. There is a textarea(description). Below it is a drop down box(worktype). Lets say I type in something in the description. Then I go to the drop down and change the value in there, to the second value in the drop down. The way the drop down is set up...
  11. keinloffel

    Storing a textfield value

    I have a JSP page in which I have: o One drop down box (Uses SELECT) - Called WorkType o One Text Field. - Called Description I also have a JavaBean in which I have instance variables for both WorkType and Description. Every Time I change the worktype, the page refreshes. The problem I am...

Part and Inventory Search

Back
Top