i have implemented Jasper Reports in my Liferay custom portlet.when i using only fields value in report page while designing report.jrxml with ireport then its have no error..but when same field values when i use in table then it gives me error that design is not valid.and when i export this to html page then its not shows any gridlines.but when i export to pdf with same report then its showing me gridlines in my padf.i am new to this ireport and jasper report.so if anyone can help me out?givng u some snippet of code
following is my report.jrxml.
<?xml version="1.0" encoding="UTF-8"?>
<jasperReport xmlns="http://jasperreports.sourceforge.net/jasperreports" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://jasperreports.sourceforge.net/jasperreports http://jasperreports.sourceforge.net/xsd/jasperreport.xsd" name="DesignedReport" language="groovy" pageWidth="595" pageHeight="842" columnWidth="555" leftMargin="20" rightMargin="20" topMargin="20" bottomMargin="20" >
<property name="ireport.zoom" value="1.0"/>
<property name="ireport.x" value="0"/>
<property name="ireport.y" value="0"/>
<style name="table">
<box>
<pen lineWidth="1.0" lineColor="#000000"/>
</box>
</style>
<style name="table_TH" mode="Opaque" backcolor="#F0F8FF">
<box>
<pen lineWidth="0.5" lineColor="#000000"/>
</box>
</style>
<style name="table_CH" mode="Opaque" backcolor="#BFE1FF">
<box>
<pen lineWidth="0.5" lineColor="#000000"/>
</box>
</style>
<style name="table_TD" mode="Opaque" backcolor="#FFFFFF">
<box>
<pen lineWidth="0.5" lineColor="#000000"/>
</box>
</style>
<subDataset name="Table Dataset 1" />
<field name="advertisename" class="java.lang.String"/>
<field name="camp_name" class="java.lang.String"/>
<field name="clicked" class="java.lang.Integer"/>
<field name="impression" class="java.lang.Integer"/>
<field name="ad_location" class="java.lang.String"/>
<field name="filter_start_date" class="java.util.Date"/>
<field name="filter_end_date" class="java.util.Date"/>
<background>
<band splitType="Stretch"/>
</background>
<title>
<band height="65" splitType="Stretch">
<staticText>
<reportElement x="163" y="0" width="261" height="40"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="28" isBold="true"/>
</textElement>
<text><![CDATA[Campaign Reports]]></text>
</staticText>
<textField pattern="MM/dd/yyyy">
<reportElement x="42" y="45" width="100" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font isUnderline="true"/>
</textElement>
<textFieldExpression><![CDATA[new java.util.Date()]]></textFieldExpression>
</textField>
<staticText>
<reportElement x="9" y="45" width="33" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font isBold="true" isUnderline="true"/>
</textElement>
<text><![CDATA[Date:- ]]></text>
</staticText>
<staticText>
<reportElement x="407" y="45" width="148" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="12" isBold="true" isUnderline="true"/>
</textElement>
<text><![CDATA[Advertise Display Reports]]></text>
</staticText>
<image>
<reportElement x="14" y="7" width="103" height="27"/>
<imageExpression><![CDATA["D:\\Liferay\\liferay-plugins-sdk-6.1.1-ce-ga2-20120731132656558\\liferay-plugins-sdk-6.1.1\\portlets\\eMenuAdvertise-portlet\\docroot\\img\\eMenu Logo_1.png"]]></imageExpression>
</image>
</band>
</title>
<pageHeader>
<band height="41" splitType="Stretch">
<textField>
<reportElement x="42" y="1" width="100" height="20"/>
<textElement/>
<textFieldExpression><![CDATA[$F{filter_start_date}]]></textFieldExpression>
</textField>
<textField>
<reportElement x="42" y="21" width="100" height="20"/>
<textElement/>
<textFieldExpression><![CDATA[$F{filter_end_date}]]></textFieldExpression>
</textField>
<staticText>
<reportElement x="9" y="0" width="33" height="20"/>
<textElement>
<font isBold="true"/>
</textElement>
<text><![CDATA[From:-]]></text>
</staticText>
<staticText>
<reportElement x="9" y="20" width="33" height="21"/>
<textElement>
<font isBold="true"/>
</textElement>
<text><![CDATA[To:-]]></text>
</staticText>
</band>
</pageHeader>
<columnHeader>
<band height="36" splitType="Stretch">
<rectangle>
<reportElement x="326" y="9" width="109" height="27"/>
</rectangle>
<rectangle>
<reportElement x="218" y="9" width="109" height="27"/>
</rectangle>
<rectangle>
<reportElement x="109" y="9" width="109" height="27"/>
</rectangle>
<rectangle>
<reportElement x="435" y="9" width="102" height="27"/>
</rectangle>
<rectangle>
<reportElement x="0" y="9" width="109" height="27"/>
</rectangle>
<staticText>
<reportElement x="128" y="11" width="78" height="25"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="12" isBold="true"/>
</textElement>
<text><![CDATA[Camp_name]]></text>
</staticText>
<staticText>
<reportElement x="230" y="17" width="81" height="18"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="12" isBold="true"/>
</textElement>
<text><![CDATA[Ad_location]]></text>
</staticText>
<staticText>
<reportElement x="352" y="11" width="55" height="25"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="12" isBold="true"/>
</textElement>
<text><![CDATA[Clicked]]></text>
</staticText>
<staticText>
<reportElement x="452" y="15" width="71" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="12" isBold="true"/>
</textElement>
<text><![CDATA[Impression]]></text>
</staticText>
<staticText>
<reportElement x="14" y="8" width="89" height="27"/>
<textElement textAlignment="Center" verticalAlignment="Middle">
<font size="12" isBold="true"/>
</textElement>
<text><![CDATA[Advertisename]]></text>
</staticText>
</band>
</columnHeader>
<detail>
<band height="32" splitType="Stretch">
<rectangle>
<reportElement x="435" y="1" width="102" height="31"/>
</rectangle>
<rectangle>
<reportElement x="327" y="1" width="108" height="31"/>
</rectangle>
<rectangle>
<reportElement x="218" y="1" width="109" height="31"/>
</rectangle>
<rectangle>
<reportElement x="109" y="1" width="109" height="31"/>
</rectangle>
<rectangle>
<reportElement x="0" y="1" width="109" height="31"/>
</rectangle>
<textField>
<reportElement x="14" y="12" width="89" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$F{advertisename}]]></textFieldExpression>
</textField>
<textField>
<reportElement x="131" y="12" width="78" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$F{camp_name}]]></textFieldExpression>
</textField>
<textField>
<reportElement x="352" y="12" width="55" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$F{clicked}]]></textFieldExpression>
</textField>
<textField>
<reportElement x="443" y="12" width="71" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$F{impression}]]></textFieldExpression>
</textField>
<textField>
<reportElement x="229" y="12" width="81" height="20"/>
<textElement textAlignment="Center" verticalAlignment="Middle"/>
<textFieldExpression><![CDATA[$F{ad_location}]]></textFieldExpression>
</textField>
</band>
</detail>
<pageFooter>
<band height="21" splitType="Stretch">
<textField>
<reportElement x="209" y="1" width="80" height="20"/>
<textElement textAlignment="Right">
<font isBold="true"/>
</textElement>
<textFieldExpression><![CDATA["Page "+$V{PAGE_NUMBER}+" of"]]></textFieldExpression>
</textField>
<textField evaluationTime="Report">
<reportElement x="300" y="1" width="40" height="20"/>
<textElement>
<font isBold="true"/>
</textElement>
<textFieldExpression><![CDATA[" " + $V{PAGE_NUMBER}]]></textFieldExpression>
</textField>
</band>
</pageFooter>
<summary>
<band height="42" splitType="Stretch"/>
</summary>
</jasperReport>
following is the code which generate the reports from my custom portlet (java code)
System.setProperty("java.awt.headless", "true");
System.out.println(java.awt.GraphicsEnvironment.isHeadless());
System.out.println("IN GENRATE REPORTS ");
System.out.println("IN GENRATE LIST " + temp_campReportList.size());
JRBeanCollectionDataSource beanCollectionDataSource = new JRBeanCollectionDataSource(temp_campReportList);
System.out.println(" bean collection "
+ beanCollectionDataSource.getRecordCount());
System.out.println("Compile Start");
// the path to the jrxml file to compile
log.info("PATH TO JRXML :- " + request.getContextPath() + "\\src_reports\\Campaign_Advertise_DateRange_Report.jrxml");
JasperCompileManager
.compileReportToFile("C:\\liferay\\tomcat-7.0.27\\webapps\\eMenuAdvertise-portlet\\src_reports\\DesignedReport.jrxml",
"C:\\liferay\\tomcat-7.0.27\\webapps\\eMenuAdvertise-portlet\\src_reports\\DesignedReport.jasper");
JasperPrint jasperPrint = JasperFillManager
.fillReport(
"C:\\liferay\\tomcat-7.0.27\\webapps\\eMenuAdvertise-portlet\\src_reports\\DesignedReport.jasper",
new HashMap<String, Object>(), beanCollectionDataSource);
log.info("Compile End");
log.info(" report path " + _report_path);
JasperExportManager.exportReportToHtmlFile(jasperPrint, _report_path+".html");
JasperExportManager.exportReportToPdfFile(jasperPrint,_report_path+ ".pdf");
so any one can guide me that how can i implement the readymade table functionality of ireport rather then the manually create the box for each collumn.following is my report image of pdf

following is html preview of my report
