如何从ListStore GWT获取列表

时间:2012-08-10 14:24:08

标签: java oop gwt gxt

我遇到GWT(gxt)的问题。

我的屏幕上有一个可编辑的网格,我把它放在带有List的网格中,但是在编辑完这个网格之后我再次需要这个List来保存在DB中我该怎么办?

类似的东西:

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

1 个答案:

答案 0 :(得分:3)

您可以致电store.getModels()获取ListStore模型。

希望它有所帮助。