0

Well i'm with a problem in GWT(gxt).

I have a grid in my screen editable and I put itens in that grid with a List, but after edit this grid I need this List again to save in DB what should I do?

something like this:

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

1 Answers1

3

You can call store.getModels() to get ListStore models.

Hope it helps.

Alexey Ogarkov
  • 2,916
  • 23
  • 28