Hello,
I have the next situation:
1. I have an object called denominations with two string attributes.
2. I have an object called medias with two string attributes
3. I have an object called Cash with two string atributes and a list of denominations attribute
4. I have an object called Envelopes with two string atributes and a list of medias attribute
3. I have an object called Deposits with several string attributes and a list of cash and a list of envelopes in the attributes.
Something like this:
I need to show in one table all the information, no matter if I have to repeat each parent value per each child value; example:
number | SealCode | CashList Attribute1 | CashList Attribute2 List1 | EnvelopList Att1 | EnvelopList Att2 List
0001 0001 value1 valueList1 value1 valueList1
0001 0002 value1 valueList2 value1 valueList2
0001 0002 value1 valueList3 value1 no value
0002 00012 value2 valueList12 no value no value
0002 00012 value2 valueList13 no value no value
0003 00013 no value no value value12 valueList12
0003 00013 no value no value value12 valueList13
.
.
.
How Could I do that in telerik reporting in one table?
Thanks
I have the next situation:
1. I have an object called denominations with two string attributes.
2. I have an object called medias with two string attributes
3. I have an object called Cash with two string atributes and a list of denominations attribute
4. I have an object called Envelopes with two string atributes and a list of medias attribute
3. I have an object called Deposits with several string attributes and a list of cash and a list of envelopes in the attributes.
Something like this:
public
class
DepositWidgetDto
{
public
DepositWidgetDto()
{
Accounts =
new
List<
string
>();
}
public
Guid Id {
get
;
set
; }
public
string
Number {
get
;
set
; }
public
List<
string
> SealsCodes {
get
;
set
; }
public
int
NonRecognized {
get
;
set
; }
public
List<CashDto> Cash {
get
;
set
; }
public
List<EnvelopeDto> Envelopes {
get
;
set
; }
public
List<UnVerifiedDto> UnVerified {
get
;
set
; }
public
List<
string
> Accounts {
get
;
set
; }
}
I need to show in one table all the information, no matter if I have to repeat each parent value per each child value; example:
number | SealCode | CashList Attribute1 | CashList Attribute2 List1 | EnvelopList Att1 | EnvelopList Att2 List
0001 0001 value1 valueList1 value1 valueList1
0001 0002 value1 valueList2 value1 valueList2
0001 0002 value1 valueList3 value1 no value
0002 00012 value2 valueList12 no value no value
0002 00012 value2 valueList13 no value no value
0003 00013 no value no value value12 valueList12
0003 00013 no value no value value12 valueList13
.
.
.
How Could I do that in telerik reporting in one table?
Thanks