Re: SelectionCell is displaying empty combo box

2011-01-05 Thread Deepak Singh
Still no luck. I hope it could be a bug also. On Tue, Jan 4, 2011 at 10:26 PM, Deepak Singh deepaksingh...@gmail.comwrote: Hi Ben, I make sure that i am adding string values to list as follows: final ListString picUps = new ArrayListString(); //

Re: SelectionCell is displaying empty combo box

2011-01-04 Thread Deepak Singh
Anyone who can resolve the issue? On Mon, Jan 3, 2011 at 11:33 PM, Deepak Singh deepaksingh...@gmail.comwrote: Hi, I have a cellTable and am displaying combox in one of the columns. I use SelectionCell for the same but my problem is that the combobox is displayed in all rows but all are

Re: SelectionCell is displaying empty combo box

2011-01-04 Thread Ben Imp
Perhaps you just snipped out the code, but in the bit you posted here I don't see anything adding any strings to the picUps ArrayList. The selection cell uses that array to build its options, so if that collection is empty, then that would explain your empty combo box issue. -Ben On Jan 4,

Re: SelectionCell is displaying empty combo box

2011-01-04 Thread Deepak Singh
Hi Ben, I make sure that i am adding string values to list as follows: final ListString picUps = new ArrayListString(); // Adding values to picUps list picUps.add( -- ); This is added to the list. On Mon, Jan 3, 2011 at 11:33 PM,

SelectionCell is displaying empty combo box

2011-01-03 Thread Deepak Singh
Hi, I have a cellTable and am displaying combox in one of the columns. I use SelectionCell for the same but my problem is that the combobox is displayed in all rows but all are empty, they dont show any values there. Code is as follows: final ListString picUps = new ArrayListString();