Hi,
I need your help again, i have this object
And what i want to do is to bind to a radgrid, so i can have this :
Company | AttributeName_1 | AttributeName_2 | ...... | AttributeName_N
---------------------------------------------------------------------------------------------------
Company | ValueName | ValueName | ........ | ValueName
I'm sure that this is possible, but i've been trying lots of ways, but still got no luck.
Thanks in advance
I need your help again, i have this object
public class Entry
{
public string Company {get;set;}
public Dictionary<
Attribute
,AttributeValue> Attributes {get;set;}
}
public class Attribute
{
public int AttributeId {get;set;}
public string AttributeName {get;set;}
}
public class AttributeValue
{
public int Id {get;set;}
public string ValueName {get;set;}
}
And what i want to do is to bind to a radgrid, so i can have this :
Company | AttributeName_1 | AttributeName_2 | ...... | AttributeName_N
---------------------------------------------------------------------------------------------------
Company | ValueName | ValueName | ........ | ValueName
I'm sure that this is possible, but i've been trying lots of ways, but still got no luck.
Thanks in advance