Problem with Data Business Obejct in Dsigner for Flex

Stimulsoft Reports.Silverlight discussion
Locked
sofiane
Posts: 43
Joined: Fri Jun 17, 2011 8:33 am
Location: france

Problem with Data Business Obejct in Dsigner for Flex

Post by sofiane »

Hello everyone,

I just started with StimulSoft. I wanted to visualize data from a business object in a DataBand.

To do this we must first associate the business object to DataBand then display them.
First, it is possible to drag directly the business object to the editor with the Silverlight Designer, which automatically creates the DataBand associated with the business object. But the same functionality is not possible in the Designer for flex, it displays Data source not assigned!.

I couldn't display data in both: Deigner for flex and Silverlight.

Is there a solution for associating a business object to a DataBand and displaying data with the Designer for Flex?

Thank you in advance for your answer!
Alex K.
Posts: 6488
Joined: Thu Jul 29, 2010 2:37 am

Problem with Data Business Obejct in Dsigner for Flex

Post by Alex K. »

Hello,

We made some improvements in that direction. Please check the latest prerelease build.

Thank you.
sofiane
Posts: 43
Joined: Fri Jun 17, 2011 8:33 am
Location: france

Problem with Data Business Obejct in Dsigner for Flex

Post by sofiane »

I use the Trial version SR_2011.06.22_Trial.

My problem is that I cannot visualise Business Object With WEB.Designer for flex
The same code, used to visualise the business object with silverlight, works so well. But don't work with WEB.Designer for flex !

Exemple :

List testList = new List();

for (int i = 0; i < 5; i++)
{
Test test1 = new Test();
test1.Email = "email" + i;
test1.Name = "name" + i;

testList.Add(test1);
}

lReport.RegBusinessObject("Alfred", "Test", testList);
lReport.Dictionary.SynchronizeBusinessObjects();

The button Businbess Object is desactivated in WEB.Designer for Flex (see the image below). So I could not Assigned data, comming from Business object, to DataBand.

The problem persists !!


Image[/img]



Thanks for your response
Alex K.
Posts: 6488
Joined: Thu Jul 29, 2010 2:37 am

Problem with Data Business Obejct in Dsigner for Flex

Post by Alex K. »

Hello,

Please check the last prerelease build.

Thank you.
Attachments
1110.Screen01.png
1110.Screen01.png (223.25 KiB) Viewed 1633 times
Locked