Bonjour,
Sauriez vous comment faire pour supprimer par defaut le titre du rapport ( BIRT Report Viewer) dans toutes les pages jsp.
J'ai tenté de modifier la valeur par defaut dans le tld mais rien n'y fait.
J'ai construit mes rapports dans le designer puis fait des simples pages jsp.
Etant donné que lorsque j'ai construit mes rapports chaque lien ouvre le rapport correspondant dans la meme fenetre je n'ai pas la main sur l'attribut showTitle du second rapport (celui ouvert sur un onClick par exemple).

Le code de ma jsp:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
<%@ taglib uri="/birt.tld" prefix="birt" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Echeancier par mois des factures à payer</title>
</head>
<body>
<birt:viewer id="birtViewer" 
	reportDesign="02d-HeaderAndBodyFacture.rptdesign"
	pattern="frameset"
	height="760"
	width="980"
	format="html"
	showTitle="false">
 </birt:viewer>
</body>
</html>