Subversion Repositories eFlore/Applications.coel

Compare Revisions

Ignore whitespace Rev 980 → Rev 981

/trunk/src/org/tela_botanica/client/vues/personne/PersonneForm.java
217,6 → 217,8
cbProjets.setTriggerAction(TriggerAction.ALL);
cbProjets.setStore(storeProjets);
cbProjets.setAllowBlank(false);
cbProjets.addStyleName(ComposantClass.OBLIGATOIRE);
cbProjets.addListener(Events.Valid, creerEcouteurChampObligatoire());
fsProjet.add(cbProjets);
hmIdentite.put("cbProjets", cbProjets);
263,6 → 265,8
tfNom.setFieldLabel("Nom");
tfNom.setAllowBlank(false);
tfNom.setName("nom");
tfNom.addStyleName(ComposantClass.OBLIGATOIRE);
tfNom.addListener(Events.Valid, creerEcouteurChampObligatoire());
fsNoms.add(tfNom);
hmIdentite.put("tfNom", tfNom);