Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[birt-dev] multiple content in cells

Hi all,
      I want to extract contents of a report, and for that i am
implementing the IContentEmitter interface.
I am not able to get the complete contents of a cell if its xml is
something like this:

                <row id="49">
                    <cell id="50">
                        <property name="colSpan">3</property>
                        <property name="rowSpan">1</property>
                        <text id="52">
                            <property name="fontFamily">sans-serif</property>
                            <property name="contentType">html</property>
                            <text-property
name="content"><![CDATA[Model Description:
<value-of>row["PRODUCTDESCRIPTION"]</value-of>]]></text-property>
                        </text>
                    </cell>
                </row>

startcell method doesnt call starttext for this cell.

How can i 'see' the contents of this cell?

Thanks


Back to the top