recursive object
recursive object
Hello ,
I have the class
public class MyObject
{
private string Name;
public string name
{
get
{
return Name;
}
set
{
Name = value;
}
}
private List list_Objet;
public List List_Objet
{
get
{
return list_Objet;
}
set
{
list_Objet = value;
}
}
}
I wich to use Business object correspending to this objects to be displyed
------ code C# ---------------------------------------------------------------------------------------
List listObject = new List();
MyObject myObject = new MyObject();
myObject.name = "nom1";
listObject.Add(myObject);
MyObject myObjectfils = new MyObject();
myObjectfils.name = "nomfils";
listObject.Add(myObjectfils);
lReport.RegBusinessObject("Exemple De Données", "Objects", listObject);
----------------------------------------------------------------------------------------------------------
But here are error
businessObject list: memebres names must be different of their covering type !!!!
Ca you explain me please how can I resolve this problem
Thanks
I have the class
public class MyObject
{
private string Name;
public string name
{
get
{
return Name;
}
set
{
Name = value;
}
}
private List list_Objet;
public List List_Objet
{
get
{
return list_Objet;
}
set
{
list_Objet = value;
}
}
}
I wich to use Business object correspending to this objects to be displyed
------ code C# ---------------------------------------------------------------------------------------
List listObject = new List();
MyObject myObject = new MyObject();
myObject.name = "nom1";
listObject.Add(myObject);
MyObject myObjectfils = new MyObject();
myObjectfils.name = "nomfils";
listObject.Add(myObjectfils);
lReport.RegBusinessObject("Exemple De Données", "Objects", listObject);
----------------------------------------------------------------------------------------------------------
But here are error
businessObject list: memebres names must be different of their covering type !!!!
Ca you explain me please how can I resolve this problem
Thanks
recursive object
Hello.
The provided code is not for Stimulsoft Reports.Fx for Flex. Could you clarify, please, what product do you use?
Your code works right on the last release of Reports.Net.
Thank you.
The provided code is not for Stimulsoft Reports.Fx for Flex. Could you clarify, please, what product do you use?
Your code works right on the last release of Reports.Net.
Thank you.
recursive object
Hello,
We are using : Reports.Web
Version 2012.1.1206 from Januray 2012
Flash Player : 11.1.102 for windows
Sofiane
We are using : Reports.Web
Version 2012.1.1206 from Januray 2012
Flash Player : 11.1.102 for windows
Sofiane
recursive object
Hello,
We couldn't reproduce this bug.
Please check the last prerelease build. If the issue is still present, please send us a sample project which reproduce the issue for analysis.
Thank you.
We couldn't reproduce this bug.
Please check the last prerelease build. If the issue is still present, please send us a sample project which reproduce the issue for analysis.
Thank you.
recursive object
Hello.
We've reproduced your problem. You should register data in the GetPreviewDataSet event of the Designer to get data on the Preview.
This is a code for this event:
Thank you.
We've reproduced your problem. You should register data in the GetPreviewDataSet event of the Designer to get data on the Preview.
This is a code for this event:
Code: Select all
List listObject = new List();
MyObject myObject = new MyObject();
myObject.name = "nom1";
listObject.Add(myObject);
MyObject myObjectfils = new MyObject();
myObjectfils.name = "nomfils";
listObject.Add(myObjectfils);
e.Report.RegBusinessObject("Exemple De Données", "Objects", listObject);
recursive object
Hello,
We are using Reports.Web of 12 January but the problem persite
I did register data in the GetPreviewDataSet event of the Designer, The problem is the same.
Are there relation with the old version used ?
Thanks
We are using Reports.Web of 12 January but the problem persite
I did register data in the GetPreviewDataSet event of the Designer, The problem is the same.
Are there relation with the old version used ?
Thanks
recursive object
Hello,
Please send us a sample project which reproduces the issue.
Thank you.
Please send us a sample project which reproduces the issue.
Thank you.
recursive object
This is a sample example which reproduce the issue
Thank you
Thank you
- Attachments
-
- 1802.WebSiteSample.rar
- (5.84 KiB) Downloaded 296 times
recursive object
Hello.
Thank you.
We get only the error like on the image. It's normal. But no error like you have.sofiane wrote:This is a sample example which reproduce the issue
Thank you.
- Attachments
-
- 1806.Untitled.png (14.93 KiB) Viewed 4876 times