Search found 6 matches

by jasond-s
Fri Mar 22, 2013 4:15 pm
Forum: Stimulsoft Reports.Silverlight
Topic: Building Report Template in Code
Replies: 10
Views: 9755

Re: Building Report Template in Code

This seems to have helped. The dataset is now visible in the BusinessObjects collection, but the report will not populate with data until I select the DataTable and not the DataSet from the business object list in the designer. I don't want to have to open up the designer really and want the DataTab...
by jasond-s
Wed Mar 20, 2013 2:41 pm
Forum: Stimulsoft Reports.Silverlight
Topic: Building Report Template in Code
Replies: 10
Views: 9755

Re: Building Report Template in Code

Does the business object 'Name' then have to be a GUID and is the same as the 'BusinessObjectGuid' value passed to the 'StiDataBand'? There is no property or constructor of the 'StiBusinessObjectData' that takes a GUID that I can find. With the 'StiDataBand.BusinessObjectGuid = "DataSet"' ...
by jasond-s
Tue Mar 19, 2013 4:50 pm
Forum: Stimulsoft Reports.Silverlight
Topic: Building Report Template in Code
Replies: 10
Views: 9755

Re: Building Report Template in Code

Sorry forgot one thing.... This is what the render method looks like. viewModel.Render = r => { var service = StiConfig.GetServices(StiLoadServiceType.StiSLPanelService).OfType<StiSLDictionaryPanelService>().FirstOrDefault(); if (service != null) { service.SetDictionaryDelete(false); service.ShowAct...
by jasond-s
Tue Mar 19, 2013 12:13 pm
Forum: Stimulsoft Reports.Silverlight
Topic: Building Report Template in Code
Replies: 10
Views: 9755

Re: Building Report Template in Code

Ok this is what I have. When I load it up in the Silverlight app, the designer looks correct, all the bands and expressions are there. But the preview shows only a single line of empty borders? Also when I go into the designer the databand has no datasourse assigned and there are none in the dialog ...
by jasond-s
Mon Mar 18, 2013 3:56 pm
Forum: Stimulsoft Reports.Silverlight
Topic: Building Report Template in Code
Replies: 10
Views: 9755

Re: Building Report Template in Code

This sample won't work without the data schema, marked in code as "e:\\Demo.xsd" and, I assume, the data as "e:\\Demo.xml".

But I understand that principles, thank you.
by jasond-s
Mon Mar 18, 2013 12:01 pm
Forum: Stimulsoft Reports.Silverlight
Topic: Building Report Template in Code
Replies: 10
Views: 9755

Building Report Template in Code

Hello.

Is there any way to build a Report Template in code behind in the silverlight client or the rest of the .NET pack?

I have a requirement to create the output of the report designer, in the code behind and was wondering if this was possible?


Many thanks.