Re: [S2.2.1] Struts Type Converter for sub-model objects not working?

2010-12-11 Thread stanlick
Look at the bottom of your message and also the top. 'contact.contactLead.income' evaluated to '$123' and you do not have a method com.afs.entity.ContactLead.setIncome([Ljava.lang.String;)] Scott On Fri, Dec 10, 2010 at 2:53 PM, Burton Rhodes burtonrho...@gmail.comwrote: I am having issues

Re: [S2.2.1] Struts Type Converter for sub-model objects not working?

2010-12-11 Thread Burton Rhodes
I know. I don't have a setIncome(String) method. But I do have setIncome(BigDecimal) method , hence the type conversion. Normally the class MyCurrencyCoverter will covert the String to BigDecimal, but it's never called. I am wondering what I am doing wrong that the conversion class is not called.