Alternate Background colour of rows in JasperReport

By: http://sothaticanremember.blogspot.com/ There are few methods to alternate background colour of rows in jasperreport. Use conditional style. A conditional style has two elements: a Boolean condition expression and a style. The style is used only if the condition evaluates to true. We have following code snippet to get alternating row color. <style name=”alternateStyle” fontName=”Arial” backcolor=”red”> <conditionalStyle>Continue reading “Alternate Background colour of rows in JasperReport”

iReport Install Problem: "Cannot find Java.exe"

By: rubamushtaq You need to set JDK path in config file. See below the path that should be something like this.. C:\Program Files (x86)\Jaspersoft\iReport-5.5.0\etc In the ‘etc’ folder you will find the config file where you have to set the jdkhome like this (jdkhome=”C:\\Program Files\\Java\\jdk1.8″ ).And you have to give jdk path not jre. Do checkContinue reading “iReport Install Problem: "Cannot find Java.exe"”

Adding Jasperserver as Service in Ubuntu

By Sochinda After install jasper report server in Ubuntu server, using terminal as bellow: Create file called jasperserver in init.d #sudo nano /etc/init.d/jasperserver Insert this text: Set jasperserver in init.d as execute permission #sudo chmod +x /etc/init.d/jasperserver Update jserperserver as default service in Ubuntu #sudo update-rc.d jasperserver defaults Finally, we can use command as: #sudoContinue reading “Adding Jasperserver as Service in Ubuntu”

Building Report Server in Jasperreport Server

By: Sochinda Tith JasperRetport Server JasperReports Server is a stand-alone and embeddable reporting server. It provides reporting and analytics that can be embedded into a web or mobile application as well as operate as a central information hub for the enterprise by delivering mission critical information on a real-time or scheduled basis to the browser,Continue reading “Building Report Server in Jasperreport Server”