Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 366 Rev 401
Line 887... Line 887...
887
		
887
		
888
		formationMarkRGrpChp = creerChoixUniqueRadioGroupe("formation_mark", "ouiNon");
888
		formationMarkRGrpChp = creerChoixUniqueRadioGroupe("formation_mark", "ouiNon");
889
		formationMarkRGrpChp.setFieldLabel("Le personnel s'occupant des collections a-t-il suivi des formations en conservations ?");
889
		formationMarkRGrpChp.setFieldLabel("Le personnel s'occupant des collections a-t-il suivi des formations en conservations ?");
Line 890... Line 890...
890
		conservationOnglet.add(formationMarkRGrpChp);
890
		conservationOnglet.add(formationMarkRGrpChp);
891
		
891
		
892
		formationChp = new TextField<String>();
892
		formationChp = new TextArea();
Line 893... Line 893...
893
		formationChp.hide();
893
		formationChp.hide();
894
		formationChp.addListener(Events.Hide, new Listener<BaseEvent>() {
894
		formationChp.addListener(Events.Hide, new Listener<BaseEvent>() {
895
 
895
 
Line 896... Line 896...
896
			public void handleEvent(BaseEvent be) {
896
			public void handleEvent(BaseEvent be) {
897
				((TextField<String>) be.source).setValue("");
897
				((TextArea) be.source).setValue("");
898
			}
898
			}