Hi I have
two columns available in radgridview Name and ID . Name column
contain same value but each name associated with id i want
group by on name on UI but programmatically it should group
by using ID . For example
Name ID
N1 5
N1 7
N1 3
N1 2
When use group by on Name result should be
N1 2
N1 3
N1 5
N1 7
how to achieve it please provide some hint
Name ID
N1 5
N1 7
N1 3
N1 2
When use group by on Name result should be
N1 2
N1 3
N1 5
N1 7
how to achieve it please provide some hint