Subversion Repositories eFlore/Applications.coel

Compare Revisions

Ignore whitespace Rev 730 → Rev 731

/trunk/src/org/tela_botanica/client/vues/PersonneForm.java
724,13 → 724,13
remplirCombobox("cbPays", liste, "hmAdresse");
} else if (listeValeurs.getId().equals(config.getListeId("region"))) {
remplirCombobox("cbRegion", liste, "hmAdresse");
((ComboBox<Valeur>) hmAdresse.get("cbRegion")).setVisible(true);
((ComboBox) hmAdresse.get("cbRegion")).setVisible(true);
}
} else if (nouvellesDonnees instanceof ProjetListe) {
ProjetListe projets = (ProjetListe) nouvellesDonnees;
List<Projet> liste = projets.toList();
ComboBox<Projet> cbProjets = (ComboBox<Projet>) hmIdentite.get("cbProjets");
ComboBox cbProjets = (ComboBox) hmIdentite.get("cbProjets");
ListStore<Projet> storeProjets= cbProjets.getStore();
storeProjets.removeAll();
storeProjets.add(liste);
963,7 → 963,8
}
public void binderPersonne(Personne personne) {
binding = new FormBinding(this);
personneSelectionnee = personne;
binding.autoBind();
binding.bind(personneSelectionnee);