Re: Modal window

2006-01-19 Thread Aldo Vadillo Batista
There's another problem related to the modal window: it not permits submitting there. You have to create an artifact to make this (put a frame inside the modal window and put the original page to display inside the frame). 2006/1/18, Frank W. Zammetti [EMAIL PROTECTED]: FYI, there are some

Re: Urgent help needed

2006-01-19 Thread Aldo Vadillo Batista
I tried to do this many times but I couldn't. I look for information in the web but I think there's no possible solution. 2006/1/19, [EMAIL PROTECTED] [EMAIL PROTECTED]: Hi Window.onclose works with only IE. However, you can try unload event. Refer the code snippet below function onClose()

Re: Opening a new window

2006-01-12 Thread Aldo Vadillo Batista
I think you can use javascript for accessing to struts html:hidden variables. 12 Jan 2006 14:59:49 -, rahul kshirsagar [EMAIL PROTECTED]: Hi, I am using struts in my application.I have one parent jsp from which i am opening a new window.Now i want to pass some value from this child

Re: [Application pattern] Advice

2005-12-28 Thread Aldo Vadillo Batista
For CRUD (create, restore, update, delete) I would use a DispatchAction for each object. 2005/12/27, Xavier Vanderstukken [EMAIL PROTECTED]: I need your help to design my web application using struts and hibernate. I have several classes to save/delete/update (like user, category,

El gran dia

2005-12-27 Thread Aldo Vadillo Batista
Bueno, a las 21.00 en la fuente luminosa ¿no? ¿Leerá Eduardo el correo? ¿Habrá que avisarlo? ¿Conservará el móvil? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: El gran dia

2005-12-27 Thread Aldo Vadillo Batista
Excuse me, I sent last message to a wrong list!! - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: help req in htnl:link tag !!!

2005-11-25 Thread Aldo Vadillo Batista
Why don't you use javascript and a form tag. 2005/11/25, Malhotra, Amitkumar (Exchange) [EMAIL PROTECTED]: Hello Folks, Am using html:link action=someaction tag to invoke an action when a hyperlink is clicked, Do want to pass parameters to the action class when this is done and do not

Re: Reporting Tools

2005-11-21 Thread Aldo Vadillo Batista
If you want to make pdf documents, you could use itext http://www.lowagie.com/iText/ 2005/11/21, Meenakshi Singh [EMAIL PROTECTED]: Jasper Reports is a powerful open source tool. U can have a look at it at http://jasperreports.sourceforge.net I have used it in my project m satisfied with

Re: Problem with a property

2005-10-26 Thread Aldo Vadillo Batista
maybe, html:text property=A.B.property ... 2005/10/26, [EMAIL PROTECTED] [EMAIL PROTECTED]: Hi, I have an object ('A') in session that I recover form a jsp whit the tag jsp:useBean. This object ('A') contains another object ('B'). And is form this ('B') I want to recover a property

Re: struts bean utils-problems with properties

2005-10-20 Thread Aldo Vadillo Batista
Maybe it fails because types are incompatible for BeanUtils. All the same getters and setters must return or accept the same type of Object. 2005/10/19, hem hem [EMAIL PROTECTED]: Hi all, i am new to this forum.this is my first post.i hope this mailing list helps me. in the first page in my

Re: form.submit() issue with html:button

2005-10-19 Thread Aldo Vadillo Batista
Have you put *submit()* correctly? It works: html:button onclick=document.forms[0].submit(); / 2005/10/19, Carl Smith [EMAIL PROTECTED]: I seem to have a issue using html:button's onclick. My value of onclick is a javascript performing form.submit(), but I found out this is not working.

Re: Clever trick required

2005-10-17 Thread Aldo Vadillo Batista
A possible solution could be: logic:notEmpty name=family logic:iterate name=family type=Family id=aFamily logic:notEmpty name=aFamily property=members bean:define id=firstRow value=true / logic:iterate name=aFamily property=members type=Member id=aMember logic:notEqual name=firstRow value=true tr

Re: What's wrong with DTOs?

2005-10-17 Thread Aldo Vadillo Batista
I think DTOs is the best solution. However, is tedious to copy properties. Yes, I know that you can use BeanUtils but sometimes you need a DTO that is a combinations of two model objects and you have to use getters and setters. 2005/10/17, Vic Cekvenich [EMAIL PROTECTED]: I don't think

Re: logic:present and html:text tags problem

2005-10-15 Thread Aldo Vadillo Batista
It doesn't work because person is not declared in Java. Maybe person is in session scope (or request scope). It's not a good solution using scriptlets but if you want, you have to put something like this: html:text property=name values='%=((Person) request.getSession