Re: binding select value to a Java 5 enum

2007-02-09 Thread Laurie Harper
That's a known limitation of the s:select tag, which only works with string-valued properties. The most straight-forward workaround is to set value, as in: L. Daniel Amadei wrote: Hi Dave/All, It worked fine even tough I had to put the fully qualified name of the field. What is not wo

Re: binding select value to a Java 5 enum

2007-02-09 Thread Daniel Amadei
Hi Dave/All, It worked fine even tough I had to put the fully qualified name of the field. What is not working is when I post back to my JSP, the select field is not automatically selected, as a workaround, I had to specify in the value of the field a method in my action which tells what item is

Re: binding select value to a Java 5 enum

2007-02-07 Thread Dave Newton
--- Daniel Amadei wrote: > person.gender=mypackage.EnumConverter > Element_person.gender=mypackage.Gender Does it work if you remove the "person." part? I'm still not entirely clear why one of my current apps does conversion correctly, but my -conversion file only has the last part of the object g

Re: binding select value to a Java 5 enum

2007-02-07 Thread Daniel Amadei
Hi All, Per my message above I was able to set value for an Enum which is a property of my action using a converter as in the showcase example, but I was not able to set the enum to a nested, when the enum never gets called. My structure is similar to: person.gender (where gender is an enum) M