Hi
I have a radgridview bounded to a list (i'm using entity framework for my db backend). i have some number and string fields and a list<string> field in my data list.
Now i want to convert that list<string> into comma separated string and then show it in it's grid column.
I know how to convert list into string(via string.join), but i don't know how could i tell to radgrid to show joint string.
So, which event of radgrid is a good place to change column or row data to display?
I mean an event that fires when radgrid is populating columns or rows data(with access to original bounded data).
Please help me.