Re: How to populate data from Database in combo box using DropDownChoice

2012-03-27 Thread Martin Grigorov
, ...) and create a List of your objects. On Tue, Mar 27, 2012 at 11:49 AM, lenin lening...@gmail.com wrote: Dear, I am trying to populate data from database in combo box using dropdownChoice,with key and value ... it is not working can anyone help to resolve the problem thanks in advance

Combo Box (help!)

2010-05-06 Thread Brian Mulholland
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 DropDownChoice with a custom ChoceRenderer as below

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
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 DropDownChoice with a custom ChoceRenderer as below. The CR interface is invoked for both the acquisition of the bean value and for each row of the list, which is why

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

Combo Box

2010-05-03 Thread Brian Mulholland
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 DropDownChoice with a custom ChoceRenderer as below. The CR interface is invoked for both the acquisition of the bean value and for each row of the list, which