Hi I have been wondering How iReport takes care of subreport I faced all above problem doing subreport in iReport. In order to pass List / collection to subreport following things need to be done.... In Main Report. >>>>>>>>>>>>>>>>> Put Following //Define List Pass List to subreport In Subreport >> […]
Hi I am sure somebody would face this problem.. Using ireport 3.7.2 Subreport in Ireport is not displayed until I do the following. Remember to set properties of subreport (Also if ur using a static text to display in subreport) Connection Type >>>> Use a datasource expression Data Source Expression >>>> new net.sf.jasperreports.engin […]
Hi, small tutorial.. on Jasper Report JavaBeans DataSoruce JRFactoryClass.java with Static method import java.util.ArrayList; import sdInterface.JRDataSource; public class JRFactoryClass { public static ArrayList createBeanCollection () { ArrayList list = new ArrayList(); // Java bean populated with row data by iBATIS Employee msb = new Employee (); msb.setA […]
Hi All, Jasper Report Java Object Mapping example.. Following link give most of it. though it is back dated.. http://ireport.sourceforge.net/cap3.html There are few books on IReport >> You might want to download from here. Guide To IReport Guide To JasperReport for Java
Hi Friends, Was wondering how to reference a singleton instance for particular Module in flex.. after reading few blog and googling .. found a solution/rather built upon it .. thought this might be helpful to somebody… Most things in AS are built on Java so Looked at Java Mulitone >> and there is the solution… import flash.utils.Dictionary; public clas […]
Hi Friends, strangly flex SDK some times work as if its dossed off. you cannot create a fileRefrence object within same function your calling download.. Strange you Cannot do following var fileRef:FileReference = new FileReference(); var urlRequest:URLRequest = new URLRequest(source); fileRef.download(urlRequest); You can do following Create dummy filerefren […]
Hi All, If your looking online book to download basically in any topic in computers, You should visit >> PDFCHM I have been following them for long and thought it might help book lovers. It will find all your question for "How does it work". Ranjit
Hi Friends, Here I am again Puting accross point where I thought for second. The solution for registering mediator for component in popup created at run time is below. reportPopup = PopUpManager.createPopUp(this.payrollModule,PdfReportFrame,true) as PdfReportFrame; registerMediator(new PdfReportFrameMediator(reportPopup)); //this without resolving component […]
Flex Builder is throwing an "expecting semicolon before minus" error on the XML declaration!! This is due to Package Name have "-" symbol. Would be great if Flex builder show approriate file. :-) Helped me. Hope it helps some body. Ranjit