Re: populate combo after comparing bean values with enum

2008-06-17 Thread mfirry
this message in context: http://www.nabble.com/populate-combo-after-comparing-bean-values-with-enum-tp17882097p17937275.html Sent from the Struts - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: [EMAIL PROTECTED] F

Re: populate combo after comparing bean values with enum

2008-06-17 Thread Laurie Harper
mfirry wrote: hi, i need to populate my combo with options taken from the FormBean and compared with the Enum values. i have it working but i doubt it's the best way to do it (and it mixes too much struts tags with jstl ones, in my opinion) anybody can help? <[EMAIL PROTECTED] import="MyPacka

populate combo after comparing bean values with enum

2008-06-17 Thread mfirry
if (v.compareTo(value) >= 0) { val = (String) (v.getLabel()); %> <%=val%> <% } } %> -- View this message in context: http://www.nabble.com/populate-combo-after-comparing-bean-values-with-enum-tp17882097p17882097.html Sent from the Struts - User mailing list archive a