Search found 359 matches

by hugo
Sat Mar 16, 2013 6:12 pm
Forum: Stimulsoft Reports.Flex
Topic: Master-Detail problem
Replies: 9
Views: 7061

Re: Master-Detail problem

All provided solutions ends up to fail but I finally found the right solution to this offline report schema filled with data at runtime and with relations between tables.
Anyway, thank you for your time.
by hugo
Thu Mar 14, 2013 11:40 pm
Forum: Stimulsoft Reports.Flex
Topic: Master-Detail problem
Replies: 9
Views: 7061

Re: Master-Detail problem

Full sample source code: private function init():void { StiViewerFx.initialize(); var loader:URLLoader = new URLLoader(); loader.addEventListener(Event.COMPLETE, onLoadComplete); loader.load(request); } private static function onLoadComplete(event:Event):void { var loader:URLLoader = event.target as...
by hugo
Tue Mar 12, 2013 10:15 pm
Forum: Stimulsoft Reports.Flex
Topic: Master-Detail problem
Replies: 9
Views: 7061

Re: Master-Detail problem

So, the problem lies on not recreate relationships between both tables after recreate tables, columns and add dataRows, So, there is 2 possibilites: 1. Don't recreate definitions but simply add rows; 2. Recreate relationships by code. I tryed both cases without sucess and there is lack of documentat...
by hugo
Mon Mar 11, 2013 10:42 pm
Forum: Stimulsoft Reports.Flex
Topic: Master-Detail problem
Replies: 9
Views: 7061

Re: Master-Detail problem

Removing report.dictionary.synchronize(), I can't even see results!
I have the full source code and the report xml, so should be easy for you to reproduce.
by hugo
Sun Mar 10, 2013 2:47 pm
Forum: Stimulsoft Reports.Flex
Topic: Master-Detail problem
Replies: 9
Views: 7061

Master-Detail problem

I tried to implement my first Master-Detail report but the details are repeat thru all groups. Sample code to reproduce the problem: var table1:DataTable = new DataTable("Customer"); table1.columns.add(new DataColumn("id", StorageType.IntType)); table1.columns.add(new DataColumn(...
by hugo
Sat Mar 09, 2013 10:14 pm
Forum: Stimulsoft Reports.Flex
Topic: styleManager breaks report viewer
Replies: 3
Views: 2618

Re: styleManager breaks report viewer

Problem solve.
by hugo
Fri Mar 08, 2013 8:32 pm
Forum: Stimulsoft Reports.Flex
Topic: styleManager breaks report viewer
Replies: 3
Views: 2618

Re: styleManager breaks report viewer

This code block solve the theme problem:
var report:StiReport = new StiReport();
report.addEventListener(StiViewerEvent.EXIT, onExit);
...
unload theme
report.show();

However I want to capture EXIT event to load the theme again but this event is never fired !
by hugo
Fri Mar 08, 2013 10:58 am
Forum: Stimulsoft Reports.Flex
Topic: styleManager breaks report viewer
Replies: 3
Views: 2618

styleManager breaks report viewer

Hello, I bought your Stimulsoft Reports.Fx for Flex and the viewer doesn't work in my application. I allow the user to change the theme of my application: FlexGlobals.topLevelApplication.styleManager.loadStyleDeclarations2(theme.url)). But unfortunately this also changes the theme of the report view...
by hugo
Fri Mar 08, 2013 10:56 am
Forum: Stimulsoft Reports.Flex
Topic: styleManager.loadStyleDeclarations2 break report viewer
Replies: 1
Views: 1923

styleManager.loadStyleDeclarations2 break report viewer

Hello, I bought your Stimulsoft Reports.Fx for Flex and the viewer doesn't work in my application. I allow the user to change the theme of my application: FlexGlobals.topLevelApplication.styleManager.loadStyleDeclarations2(theme.url)). But unfortunately this also changes the theme of the report view...