Re: Struts Form Beans Value Objects

2002-12-03 Thread Pat Quinn
Users Mailing List [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Subject: Re: Struts Form Beans Value Objects Date: Mon, 2 Dec 2002 19:28:00 +0100 I think you can place the VO in your form bean, and have text fields to update the different properties. For example, if you have

Re: Struts Form Beans Value Objects

2002-12-03 Thread Jeff_Mychasiw
[EMAIL PROTECTED] To:[EMAIL PROTECTED] cc: Subject:Re: Struts Form Beans Value Objects Hi, I have tried the below it works fine when i fetch the data but when i want to update a text field etc i get the following error: java.lang.IllegalArgumentException: No bean specified

Struts Form Beans Value Objects

2002-12-02 Thread Pat Quinn
I have an EJB which returns me a HeaderVO (Value Object) inside this VO I have an Array List of LineVO's. As you'd except all my Value objects are Serializable. Ok now i want to display this data to my client so I will have a header html table and a lines html table. My header and lines both

Re: Struts Form Beans Value Objects

2002-12-02 Thread Patrice
by the user, without additional code. Hope it helps Patrice - Original Message - From: Pat Quinn [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, December 02, 2002 7:08 PM Subject: Struts Form Beans Value Objects I have an EJB which returns me a HeaderVO (Value Object) inside this VO I

RE: Struts Form Beans Value Objects

2002-12-02 Thread Karr, David
Most likely, you will find good reasons to have value objects which are specific to your business logic layer, and value objects which are specific to your view layer, even if they have identical contents in many cases. There's a couple of reasons for this (other people may see others). Probably