我在gwt中构建应用程序,我有3列的cellTabe。 我从gwt showcase中看到了这个例子 http://gwt.googleusercontent.com/samples/Showcase/Showcase.html#!CwCellTable 但是如果没有要显示的项目,我需要每行中的listBox与其他项目或隐藏listBox 我需要的CellTable示例:
--------------------------------------------------------------------------------
| 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 |
--------------------------------------------------------------------------------
我需要将changedSelectedListener添加到每个listBox,因为如果listBox发生了变化,我需要在屏幕上显示更多数据 我怎么能这样做? 谢谢