I was pointed to the virtualised wrappanel by another developer but i've not managed to figure out if what I need is possible.
I want to have a wrappanel containing custom objects eg:
public class CO
{
public int GroupA {get; set;}
... other properties not needed for this example
}
I've also got a group object like:
public class Group
{
public int ID {get; set}
public string Description {get; set}
}
I'm wanting a wrappanel where I can show the CO's. That's easy, WPF does this already.
What i'm wanting to do is trigger a "group by" so if I set to say A, then the wrappanel shows
GROUP 1 DESCRIPTION
all CO's with GroupA = 1
GROUP 2 DESCRIPTION
all CO's with GroupA = 2
This can be toggled on/off.
A further complication is where I may have different groups to group by eg: another GroupB member or, have a List<int> GroupMember and group if the desired ID is found in the list.
I have found a control by a telerik competitor which does do what i'm asking, but the price is over 10x Telerik and definately out of my price point.
Can this be done in the telerik suite ?
I want to have a wrappanel containing custom objects eg:
public class CO
{
public int GroupA {get; set;}
... other properties not needed for this example
}
I've also got a group object like:
public class Group
{
public int ID {get; set}
public string Description {get; set}
}
I'm wanting a wrappanel where I can show the CO's. That's easy, WPF does this already.
What i'm wanting to do is trigger a "group by" so if I set to say A, then the wrappanel shows
GROUP 1 DESCRIPTION
all CO's with GroupA = 1
GROUP 2 DESCRIPTION
all CO's with GroupA = 2
This can be toggled on/off.
A further complication is where I may have different groups to group by eg: another GroupB member or, have a List<int> GroupMember and group if the desired ID is found in the list.
I have found a control by a telerik competitor which does do what i'm asking, but the price is over 10x Telerik and definately out of my price point.
Can this be done in the telerik suite ?