Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
好吧,我在 GWT(gxt) 中遇到了问题。
我的屏幕中有一个可编辑的网格,我用一个列表将它放在那个网格中,但是在编辑这个网格之后我需要这个列表再次保存在数据库中我该怎么办?
像这样的东西:
public ListStore<MdlFormDic> store = new ListStore<MdlFormDic>(); store.add(list); //how to get list from the store?
您可以调用store.getModels()以获取 ListStore 模型。
store.getModels()
希望能帮助到你。