Subversion Repositories eFlore/Applications.cel

Compare Revisions

Ignore whitespace Rev 1704 → Rev 1705

/trunk/src/org/tela_botanica/client/vues/observation/ListeObservationVue.java
187,6 → 187,7
});
ToolbarTextItem exporter = new ToolbarTextItem("<a href=\"#\" id=\"lienExport\"> Exporter </a>");
ToolbarTextItem exporterFull = new ToolbarTextItem("<a href=\"#\" id=\"lienExportFull\" title=\"Export des noms communs, des champs étendus, des données baseflor et des syntaxon baseveg\"> Export Étendu </a>");
ToolbarTextItem exporterPDF = new ToolbarTextItem("<a href=\"#\" id=\"lienExportPDF\" title=\"Génération d'étiquettes au format PDF pour la sélection\"> Étiquettes </a>");
barreActions.addButton(publier);
197,6 → 198,7
barreActions.addButton(importer);
barreActions.addSpacer();
barreActions.addItem(exporter);
barreActions.addItem(exporterFull);
barreActions.addItem(exporterPDF);
this.setTopToolbar(barreActions) ;
390,10 → 392,18
lienExport.addListener("click", new EventCallback() {
@Override
public void execute(EventObject e) {
observationMediateur.exporterObservations();
observationMediateur.exporterObservations("xls", "standard");
}
});
 
ExtElement lienExportFull = Ext.get("lienExportFull") ;
lienExportFull.addListener("click", new EventCallback() {
@Override
public void execute(EventObject e) {
observationMediateur.exporterObservations("xls", "standard,avance,etendu,baseflor");
}
});
 
ExtElement lienExportPDF = Ext.get("lienExportPDF") ;
lienExportPDF.addListener("click", new EventCallback() {
@Override