0
Reply

Grid Formating

rahul ahuj

rahul ahuj

Feb 6 2014 4:52 AM
818

I have list of Task  which looks like below and i am binding it to the grid and I need to some formatting

Task ID | Employee Name | Status         | Priority       | DateAdded
     1111|                 Raj      |  InProgress  |         3            |12/12/2013 
     1112|                 Raj      | InProgress   |         3            |12/12/2013
     1113|                 Raj      | Completed  |         1            | 12/12/2013
     1114|                 Mak    | Completed  |         2            |13/12/2013
     1115|                 Mak    | Hold            |         4            |13/12/2013
     1116|                 Mak    | Assigned     |         5            |13/12/2013
     1117|                 Sam    | Wokring      |         1            |14/12/2013
     1118|                 Sam    | Hold            |         1            |14/12/2013
     1118|                 Sam    | Completed  |         2            |15/12/2013
     1118|                 Sam    | Completed  |         4            |16/12/2013
     1120|                 Sam    | Completed  |          2           |17/12/2013
     1121|                 Sam    |InProgress    |         5            |17/12/2013
     1122|                 Sam    |InProgress    |          1           |19/12/2013
     1123|                 Ram    |InProgress    |         3            |19/12/2013

I have asp.net grid and want to show only Employee name once in the name column as follow

Task ID | Employee Name | Status         | Priority       | DateAdded
     1111|                 Raj      |  InProgress  |         3            |12/12/2013 
     1112|                            | InProgress   |         3            |12/12/2013
     1113|                            | Completed  |         1            | 12/12/2013
     1114|                 Mak    | Completed  |         2            |13/12/2013
     1115|                            | Hold            |         4            |13/12/2013
     1116|                            | Assigned     |         5            |13/12/2013
     1117|                 Sam    | Wokring      |         1            |14/12/2013
     1118|                            | Hold            |         1            |14/12/2013
     1118|                            | Completed  |         2            |15/12/2013
     1118|                            | Completed  |         4            |16/12/2013
     1120|                            | Completed  |          2           |17/12/2013
     1121|                            |InProgress    |         5            |17/12/2013
     1122|                            |InProgress    |          1           |19/12/2013
     1123|                 Ram    |InProgress    |         3            |19/12/2013

I dont want to use data row boud to get this out put