Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Intelligence (Analytics)
what relations between ReportItemHandle and ReportItem?
kevin23_hy
now i code a CrosstabReportItemHandle createSimpleCrosstab(),wanna to be handled by ReportItemHandle but dont know how to deal with,and they has what relationship betweens?
there is some code---
ReportItemHandle rih = factory.newExtendedItem ("CrosstabView", "CrosstabView");
RowHandle row2 = (RowHandle) grid.getRows().get(1);
CellHandle cell2 = (CellHandle) row2.getCells().get(0);
cell2.setRowSpan(1);
cell2.getContent().add(createSimpleCrosstab(null, null, design));//The method add(DesignElementHandle) in the type SlotHandle is not applicable for the arguments (CrosstabReportItemHandle)
Find more posts tagged with
Comments
JasonW
If your code is really returning an instance of CrosstabReportItemHandle try
yourinstance.getCrosstabHandle() and use that in your add command.
Jason