Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 979 Rev 981
Line 215... Line 215...
215
		cbProjets.setDisplayField("nom");
215
		cbProjets.setDisplayField("nom");
216
		cbProjets.setEditable(false);
216
		cbProjets.setEditable(false);
217
		cbProjets.setTriggerAction(TriggerAction.ALL);
217
		cbProjets.setTriggerAction(TriggerAction.ALL);
218
		cbProjets.setStore(storeProjets);
218
		cbProjets.setStore(storeProjets);
219
		cbProjets.setAllowBlank(false);
219
		cbProjets.setAllowBlank(false);
-
 
220
		cbProjets.addStyleName(ComposantClass.OBLIGATOIRE);
-
 
221
		cbProjets.addListener(Events.Valid, creerEcouteurChampObligatoire());
220
		fsProjet.add(cbProjets);
222
		fsProjet.add(cbProjets);
Line 221... Line 223...
221
		
223
		
Line 222... Line 224...
222
		hmIdentite.put("cbProjets", cbProjets);
224
		hmIdentite.put("cbProjets", cbProjets);
Line 261... Line 263...
261
		//Nom
263
		//Nom
262
		TextField<String> tfNom = new TextField<String>();
264
		TextField<String> tfNom = new TextField<String>();
263
		tfNom.setFieldLabel("Nom");
265
		tfNom.setFieldLabel("Nom");
264
		tfNom.setAllowBlank(false);
266
		tfNom.setAllowBlank(false);
265
		tfNom.setName("nom");
267
		tfNom.setName("nom");
-
 
268
		tfNom.addStyleName(ComposantClass.OBLIGATOIRE);
-
 
269
		tfNom.addListener(Events.Valid, creerEcouteurChampObligatoire());
Line 266... Line 270...
266
		
270
		
267
		fsNoms.add(tfNom);
271
		fsNoms.add(tfNom);
Line 268... Line 272...
268
		hmIdentite.put("tfNom", tfNom);
272
		hmIdentite.put("tfNom", tfNom);