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 103... Line 103...
103
	}
103
	}
Line 104... Line 104...
104
	
104
	
105
	private ContentPanel creerPanneauContenantGrille() {
105
	private ContentPanel creerPanneauContenantGrille() {
Line 106... Line 106...
106
		ContentPanel panneau = new ContentPanel();
106
		ContentPanel panneau = new ContentPanel();
107
		
107
		
108
		panneau.setHeading(i18nC.collectionPublicationTitre());
108
		panneau.setHeadingHtml(i18nC.collectionPublicationTitre());
109
		panneau.setIcon(Images.ICONES.table());
109
		panneau.setIcon(Images.ICONES.table());
Line 110... Line 110...
110
		panneau.setLayout(new FitLayout());
110
		panneau.setLayout(new FitLayout());
Line 185... Line 185...
185
	}
185
	}
Line 186... Line 186...
186
	
186
	
187
	private PublicationForm creerFormulairePublication(final FenetreForm fenetre, final String publicationId) {
187
	private PublicationForm creerFormulairePublication(final FenetreForm fenetre, final String publicationId) {
188
		PublicationForm formulairePublication = new PublicationForm(mediateur, publicationId, this);
188
		PublicationForm formulairePublication = new PublicationForm(mediateur, publicationId, this);
189
		FormPanel panneauFormulaire = formulairePublication.getFormulaire();
189
		FormPanel panneauFormulaire = formulairePublication.getFormulaire();
190
		fenetre.setHeading(panneauFormulaire.getHeading());
190
		fenetre.setHeadingHtml(panneauFormulaire.getHeadingHtml());
191
		panneauFormulaire.setHeaderVisible(false);
191
		panneauFormulaire.setHeaderVisible(false);
Line 192... Line 192...
192
		panneauFormulaire.setTopComponent(null);
192
		panneauFormulaire.setTopComponent(null);
193
		
193
		
Line 372... Line 372...
372
		ProxyCollectionAPublication<ModelData> proxyCollectionAPublication = new ProxyCollectionAPublication<ModelData>(null, collection.getId());		
372
		ProxyCollectionAPublication<ModelData> proxyCollectionAPublication = new ProxyCollectionAPublication<ModelData>(null, collection.getId());		
Line 373... Line 373...
373
 
373
 
374
		// Colonnes
374
		// Colonnes
375
		List<ColumnConfig> colonnes = new ArrayList<ColumnConfig>();
375
		List<ColumnConfig> colonnes = new ArrayList<ColumnConfig>();
376
		RowNumberer numeroPlugin = new RowNumberer();
376
		RowNumberer numeroPlugin = new RowNumberer();
377
		numeroPlugin.setHeader("#");
377
		numeroPlugin.setHeaderHtml("#");
378
		XTemplate infoTpl = XTemplate.create("<p>"+
378
		XTemplate infoTpl = XTemplate.create("<p>"+
379
			"<span style='font-weight:bold;'>"+i18nC.publicationAuteurs()+" :</span> {cpu_fmt_auteur}<br />"+
379
			"<span style='font-weight:bold;'>"+i18nC.publicationAuteurs()+" :</span> {cpu_fmt_auteur}<br />"+
380
			"<span style='font-weight:bold;'>"+i18nC.publicationTitre()+" :</span> {cpu_titre}<br />"+
380
			"<span style='font-weight:bold;'>"+i18nC.publicationTitre()+" :</span> {cpu_titre}<br />"+
381
			"<span style='font-weight:bold;'>"+i18nC.publicationRevueCollection()+" :</span> {cpu_collection}<br />"+
381
			"<span style='font-weight:bold;'>"+i18nC.publicationRevueCollection()+" :</span> {cpu_collection}<br />"+