JoseDeJesus Arena

Greenhorn
+ Follow
since Apr 24, 2011
JoseDeJesus likes ...
Android Eclipse IDE MySQL Database
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by JoseDeJesus Arena

Hi thks for the reply, and this.target refers to the target property of the form, what I setting as target = "_blank", so what I try to do, its reference the blank popup to the action of the windows.open, thats why I write this.target, I hope be clear in my explination

regards

Hi all

I need your help, because I have a login JSP and when I submit the strut's action Form the next JSP show me information from my data base, so what I need its send this page in a pop up because I need limit the action of the user, for example disbale forward and backward buttons and stuff like that, I know that its with windows.open() method, but I dont know how to send the form, and the strut's action. I have some test but with no success here the snippet of the code



In this case I write in the JSP form tag the property target="_blank" and first show me a blank pop up but without information and next open a new popup but with all properties of my browser

Also try this, writing the action but I have the same result



So someone knows how to open the a struts action in a new pop up, thanks for the help

Thanks for the advice Joe, and yes you are complete right because inside the while I just had a instance of my object, so every time execute that line just overwrite my instance, so what I did it was inside the while create a new instance of my object and it works fine

12 years ago
Hi, everybody, I need your help, because I need to Iterate a List with strut´s logic:iterate tag, but I only getting the information of the last record of the query that I excecute before, for example the result of my sql query it´s something like this

1 1 1 1
2 2 2 2
3 3 3 3
4 4 4 4
5 5 5 5

When I excecute my code, the JSP only repetme five times the last record

5 5 5 5
5 5 5 5
5 5 5 5
5 5 5 5
5 5 5 5


here is a snippet of my code from my action class

Here I call a method named generarReportes, an here a snippet form my implementation

And finally in my JSP

So could you please help me to figured out whats wrong with my code??
12 years ago