folder structureHi Folks... I have a situation where I have this model:
Customer - name : String - phone : String - addr1 : String: - addr2 : String - sales: Vector (of following classe) Sales - date: Date - paymentMethod: String - value: Double How can I present the properties from sales objects from Vector inside the property sales from bean Customer? I would like to present: customer.getSales().getPaymentMethod() , but I wanna show with bean:write tag... some idea? since now... Thanks Edgar

