I build application in gwt and I have cellTabe with 3 columns. I saw this example from gwt showcase http://gwt.googleusercontent.com/samples/Showcase/Showcase.html#!CwCellTable but I need listBox in every row with other items or hide listBox if no items to show example for my CellTable I need:
--------------------------------------------------------------------------------
| column 1: | name column 2: lastName | column 3: favorites |
|-----------|--------------------------|-----------------------------------------|
| gal | lavie | listBox with basketball,football,tennis |
| eyal | lavie | listBox with horses,swimming |
| ela | lavie | no items so hide listBox |
--------------------------------------------------------------------------------
and I need to add changedSelectedListener to each listBox because if listBox changed I need to show more data on screen how I can do this? thank you