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

我的屏幕上有一个可编辑的网格,并且将带有列表的itens放置在该网格中,但是在编辑此网格后,我再次需要此List才能保存到DB中,该怎么办?

像这样的东西:

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

最佳答案

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

希望能帮助到你。

10-07 18:13