Subversion Repositories eFlore/Applications.coel

Rev

Rev 1077 | Rev 1099 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1077 Rev 1082
Line 87... Line 87...
87
		projetsCombo.setTabIndex(tabIndex++);
87
		projetsCombo.setTabIndex(tabIndex++);
88
		projetsCombo.setFieldLabel(i18nC.projetChamp());
88
		projetsCombo.setFieldLabel(i18nC.projetChamp());
89
		projetsCombo.setDisplayField("nom");
89
		projetsCombo.setDisplayField("nom");
90
		projetsCombo.setTriggerAction(TriggerAction.ALL);
90
		projetsCombo.setTriggerAction(TriggerAction.ALL);
91
		projetsCombo.setStore(new ListStore<Projet>());
91
		projetsCombo.setStore(new ListStore<Projet>());
-
 
92
		projetsCombo.setEmptyText(i18nC.txtListeProjetDefaut());
-
 
93
		projetsCombo.setEditable(false);
92
		projetsCombo.setForceSelection(true);
94
		projetsCombo.setForceSelection(true);
93
		projetsCombo.setAllowBlank(false);
95
		projetsCombo.setAllowBlank(false);
94
		projetsCombo.setValidator(new Validator() {
96
		projetsCombo.setValidator(new Validator() {
95
			@Override
97
			@Override
96
			public String validate(Field<?> champ, String valeurAValider) {
98
			public String validate(Field<?> champ, String valeurAValider) {
Line 103... Line 105...
103
				return retour;
105
				return retour;
104
			}
106
			}
105
		});
107
		});
106
		projetsCombo.addStyleName(ComposantClass.OBLIGATOIRE);
108
		projetsCombo.addStyleName(ComposantClass.OBLIGATOIRE);
107
		projetsCombo.addListener(Events.Valid, creerEcouteurChampObligatoire());
109
		projetsCombo.addListener(Events.Valid, creerEcouteurChampObligatoire());
108
		projetsCombo.addListener(Events.Invalid, creerEcouteurChampObligatoire());
-
 
109
		panneauFormulaire.add(projetsCombo, new FormData(450, 0));
110
		panneauFormulaire.add(projetsCombo, new FormData(450, 0));
110
		mediateur.selectionnerProjet(this, null);
111
		mediateur.selectionnerProjet(this, null);
Line 111... Line 112...
111
		
112
		
112
		titreChp = new TextField<String>();
113
		titreChp = new TextField<String>();