Re: Combo Box (help!)

2010-05-06 Thread Josh Glassman
[Ljava.lang.String;@HEX looks like you are stuffing an Array of Strings into a String. So, it calls String[].toString() and stuffs that into your String, like so... System.out.println(new String[] {string, array});. I'm not real familiar with the choice renderer, so I'm not sure how this would

Re: Combo Box (help!)

2010-05-06 Thread Martin Grigorov
Try with @Override public String getIdValue(Object array, int arg1) { return Integer.toString(arg1); } On Thu, 2010-05-06 at 15:44 -0400, Brian Mulholland wrote: This is a second asking, so sorry if I am being impatient, but I was hoping to see a response to this. I've got a

Re: Combo Box (help!)

2010-05-06 Thread Thomas Kappler
On 05/06/2010 09:44 PM, Brian Mulholland wrote: This is a second asking, so sorry if I am being impatient, but I was hoping to see a response to this. I've got a combo box with the list in a List of string arrays (code and decode). The bean has the currently selected code. I created a