I'm trying to do this but I can't! I don't know why.
I have a database table containing tadremarks and I want to show them using a grid. I obtain the data from the database by RPC. Perhaps I'm adding de grid to the panel before the RPC method give me the data?
AsyncCallback<List<Marcas>> callback = new AsyncCallback<List<Marcas>>() {
public void onFailure(Throwable caught) {
Info.display("Aviso", "Fallo al consultar las marcas");
return;
}
public void onSuccess(List<Marcas> listaMarcas) {
setListStore(new ListStore<Marcas>());
getListStore().add(listaMarcas);
I can figure it out, but I need more information, tutorials, etc. I was very excited about ext gwt, but the little information I could found makes the development very hard.