0

好吧,我在 GWT(gxt) 中遇到了问题。

我的屏幕中有一个可编辑的网格,我用一个列表将它放在那个网格中,但是在编辑这个网格之后我需要这个列表再次保存在数据库中我该怎么办?

像这样的东西:

public ListStore<MdlFormDic> store = new ListStore<MdlFormDic>();
store.add(list);
//how to get list from the store?
4

1 回答 1

3

您可以调用store.getModels()以获取 ListStore 模型。

希望能帮助到你。

于 2012-08-10T14:27:55.250 回答