Re: Multiple ImageButtonBeans

2004-10-13 Thread Michael McGrady
I should have added that, if you really want the ImageButtonBean, then you can add to the normal code as follows to solve your problem: Change public String getSelected() { if (getCreateButton().isSelected()) { return "create"; } if (getRetrieveButton().isSelected()) { return "retrieve";

Re: Multiple ImageButtonBeans

2004-10-13 Thread Michael McGrady
First, the problem is that you are bloating your system with the ImageButtonBeans in the first place. You don't have to do that. But, once you do it, you have the problems you state. You can use various other simpler and less resource intensive solutions linked to at http://wiki.apache.org/s

Multiple ImageButtonBeans

2004-10-13 Thread gdeschen
Greetings, I have searched the lists for some time without any success. I have a Session Form Bean (this is necessay to do a unit of work that spans many pages...) On a page I have 3 ImageButtonBeans. Update, Cancel and Beneficiaries. My problem arises in the Validate method of the Form. In orde