puntosEntrega=new ListBox();
puntosEntrega.addItem("Todos","0");
puntoEntregaGrid.setWidget(0, 1, puntosEntrega);
puntoEntregaGrid.setWidget(0, 0,new Label("Punto Entrega"));
IPuntoReferenciaAsync serverPuntoReferencia=GWT.create(IPuntoReferencia.class);
serverPuntoReferencia.listPuntoEntrega(new AsyncCallback<ArrayList<PuntoReferenciaDTO>>() {
@Override
public void onSuccess(ArrayList<PuntoReferenciaDTO> result) {
puntosEntregaGlobal=result;
for(PuntoReferenciaDTO d:result){