Re: OptionTransfer Select - id number formatting

2007-05-31 Thread Brian Trzupek
I figured this out. All I did was change the method signature on my Action class from: setNotificationUsers(Collection notificationUsers) to setNotificationUsers(Collection notificationUsers) And Struts/XWork took care of the rest. Brian- On May 31, 2007, at 10:08 AM, Brian Trzupek wrote:

RE: OptionTransfer Select - id number formatting

2007-05-31 Thread Al Sutton
Had the same problem recently, the choice I made was to make the parameter for the second action the same type as the parameter for the first, i.e.; ActionA has public Integer getValue() ActionB has public setValue(Integer x) Worked for me with Longs. -Original Message- From: Brian Trzup