Hi ,
I have made Report BIRT that embedded to jsp file, and i also made some user auth ( user-pass ), when user login successfully, i want my jsp that already embedd the Report BIRT, automatic run with value report parameter = Date Now (), is anybody can help me ?
Here I attached my source.( jsp file )
<body>
<%
@include file="WEB-INF/menu.jsp" %>
<div class="class2">
<%
@tagliburi="/birt.tld" prefix="birt"%>
<birt:parameterPage
id="report1"
name="page1"
target="ReportFrame"
reportDesign="dashboard.rptdesign"
isCustom="true"
showTitle="false"
showToolBar="true"
showNavigationBar="true"
frameborder="false"
forceOverwriteDocument="true"
pattern="frameset">
</div>
<div class="borderTable">
Input Value Date Periode with Format : YYYYMMDD
<br>
<tr>
<td>Date Periode:</td>
<td>
<birt:paramDef id="14"
name="Date From"
cssClass="class3">
</birt:paramDef>
<img src="images/cal.gif" onclick="javascript:NewCssCal('14','yyyyMMdd','arrow')" style="cursor:pointer"/>
</td>
s/d
<td>
<birt:paramDef id="15"
name="Date To"
cssClass="class3">
</birt:paramDef>
<img src="images/cal.gif" onclick="javascript:NewCssCal('15','yyyyMMdd','arrow')" style="cursor:pointer"/>
</td>
</tr>
<input type="submit" value="View" name="MXLookup" width="15" height="14">
<input type="submit" value="Refresh">
</birt:parameterPage>
</div>
<div class="class5">
<IFRAME WIDTH=100% HEIGHT=900 FrameBorder="0" NAME="ReportFrame">
</IFRAME>
</div>
</body>
Thanks
Nyoman