Report Data - Continued

Stimulsoft Reports.Flex discussion
Locked
ksukat
Posts: 25
Joined: Mon Aug 13, 2012 7:05 pm

Report Data - Continued

Post by ksukat »

I am using the Trial version of the Reports.FX.
I have get things setup to print from my flex application. The problem I am having is that the
report title prints, but the dataBand does not. The title has some data from my XML.
I have verified that the report contains the correct dictionary elements.
In my app flex code I have:

var xml:XML = XML(rptxml);

rptxml is a string variable. I have confirmed that the string has valid xml that matches what the report was designed with.

report = new StiReport();
report.loadReportFromString(reportString);
report.regData("FeedSum","FeedSum",xml);
report.dictionary.synchronize();
report.showDialog();

Any ideas greatly appreciated.
HighAley
Posts: 8430
Joined: Wed Jun 08, 2011 7:40 am
Location: Stimulsoft Office

Re: Report Data - Continued

Post by HighAley »

Hello.

Please, try to remove next string:

Code: Select all

report.dictionary.synchronize();
Thank you.
ksukat
Posts: 25
Joined: Mon Aug 13, 2012 7:05 pm

Re: Report Data - Continued

Post by ksukat »

Didn't help. Live data (From the xml) shows in Title, but NO detail (data) band data showing.
HighAley
Posts: 8430
Joined: Wed Jun 08, 2011 7:40 am
Location: Stimulsoft Office

Re: Report Data - Continued

Post by HighAley »

Hello.

Please send us your report with data for analysis.

Thank you.
ksukat
Posts: 25
Joined: Mon Aug 13, 2012 7:05 pm

Re: Report Data - Continued

Post by ksukat »

Never mind. It was my own fault.
I hate to admit it, but my generated xml data had a slight variation in an xml tag. This didn't match the report design.
Once I fixed the xml tag to match, it worked just fine.
HighAley
Posts: 8430
Joined: Wed Jun 08, 2011 7:40 am
Location: Stimulsoft Office

Re: Report Data - Continued

Post by HighAley »

Hello.

It's good. Let us know if you'll have any questions.

Thank you.
Locked