Subversion Repositories eFlore/Applications.coel

Rev

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

Rev 1661 Rev 1680
Line 134... Line 134...
134
	}
134
	}
Line 135... Line 135...
135
	
135
	
136
	private ContentPanel creerPanneauContenantGrille() {
136
	private ContentPanel creerPanneauContenantGrille() {
Line 137... Line 137...
137
		ContentPanel panneau = new ContentPanel();
137
		ContentPanel panneau = new ContentPanel();
138
		
138
		
139
		panneau.setHeading(i18nC.collectionCommentaireTitre());
139
		panneau.setHeadingHtml(i18nC.collectionCommentaireTitre());
140
		panneau.setIcon(Images.ICONES.table());
140
		panneau.setIcon(Images.ICONES.table());
Line 141... Line 141...
141
		panneau.setLayout(new FitLayout());
141
		panneau.setLayout(new FitLayout());
Line 220... Line 220...
220
	}
220
	}
Line 221... Line 221...
221
	
221
	
222
	private CommentaireForm creerFormulaireCommentaire(final FenetreForm fenetre, String commentaireId) {
222
	private CommentaireForm creerFormulaireCommentaire(final FenetreForm fenetre, String commentaireId) {
223
		CommentaireForm formulaire = new CommentaireForm(mediateur, commentaireId, this);
223
		CommentaireForm formulaire = new CommentaireForm(mediateur, commentaireId, this);
224
		FormPanel panneauFormulaire = formulaire.getFormulaire();
224
		FormPanel panneauFormulaire = formulaire.getFormulaire();
225
		fenetre.setHeading(panneauFormulaire.getHeading());
225
		fenetre.setHeadingHtml(panneauFormulaire.getHeadingHtml());
226
		panneauFormulaire.setHeaderVisible(false);
226
		panneauFormulaire.setHeaderVisible(false);
Line 227... Line 227...
227
		panneauFormulaire.setTopComponent(null);
227
		panneauFormulaire.setTopComponent(null);
228
 
228