I am building an application using Struts with Tiles and and a generic page is like:
------------------------------------------
TopNav
------------------------------------------
|
|
|
LeftNav | Body
|
|
|...
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
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...
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.
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...
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
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.