5 Answers, 1 is accepted
Currently this will not be an easy task but we are working on multiple cell selection mechanism which will automatically do that for you. This new feature should be available in our next service pack release.
Hope this information if helpful.
Greetings,
Milan
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.

It also appears that as soon as the cells scroll out of the visible pane, they lose their color. I'm assuming I'll have to set a boolean value or something like that to keep the colors in the cells?
RadGridView is handling many mouse and keyboard events and most probably that is the reason why you haven't been able to receive those event. Nevertheless there is a way to subscribe for those event using the AddHandler method:
public
Window1()
{
InitializeComponent();
this
.playersGrid.ItemsSource = Club.GetPlayers();
this
.playersGrid.RowLoaded +=
new
System.EventHandler<RowLoadedEventArgs>(playersGrid_RowLoaded);
}
void
playersGrid_RowLoaded(
object
sender, RowLoadedEventArgs e)
{
var row = e.Row
as
GridViewRow;
if
(row !=
null
)
{
foreach
(var cell
in
row.Cells)
{
cell.AddHandler(GridViewCell.MouseLeftButtonDownEvent,
new
MouseButtonEventHandler(OnCellMouseDown),
true
);
}
}
}
private
void
OnCellMouseDown(
object
sender, MouseButtonEventArgs e)
{
var clickedCell = (GridViewCell)sender;
}
In regards to the second issue you should to set EnableColumnVirtualization and EnableRowvirtualization to false if you would like the cells to persist their colors.
Kind regards,Milan
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.

Did you guys ever implement a multi cell select functionality that you mentioned above?
We have implemented multiple cell selection a long time ago. You can test the functionality on our demos and read more about it in the documentation.
Let us know if you need any assistance with that.
Maya
Telerik
Explore the entire Telerik portfolio by downloading Telerik DevCraft Ultimate.