Subversion Repositories eFlore/Applications.coel

Compare Revisions

Ignore whitespace Rev 685 → Rev 686

/trunk/src/org/tela_botanica/client/vues/StructureForm.java
1609,7 → 1609,7
nbreTotalPersonneStructureChp = new NumberField();
nbreTotalPersonneStructureChp.setFieldLabel("Nombre de personne travaillant dans l'institution");
nbreTotalPersonneStructureChp.setFormat(NumberFormat.getFormat("#"));
nbreTotalPersonneStructureChp.setToolTip("Ce champ doit contenir un nombre");
nbreTotalPersonneStructureChp.setToolTip(i18nC.champNumerique());
fieldSetIdentite.add(nbreTotalPersonneStructureChp);
 
identificationOnglet.add(fieldSetIdentite);
1947,7 → 1947,6
 
// Test pour savoir si la liste contient des éléments
if (liste.size() > 0) {
Configuration config = (Configuration) Registry.get(RegistreId.CONFIG);
if (listeValeurs.getId().equals(config.getListeId("stpr"))) {
magazinLstpr.removeAll();
magazinLstpr.add(liste);
2048,10 → 2047,7
}
private void rafraichirProjetListe(ProjetListe projets) {
List<Projet> liste = new ArrayList<Projet>();
for (Iterator<String> it = projets.keySet().iterator(); it.hasNext();) {
liste.add(projets.get(it.next()));
}
List<Projet> liste = projets.toList();
projetsMagazin.removeAll();
projetsMagazin.add(liste);
projetsCombo.setStore(projetsMagazin);