I currently have a gridview that is bound to a collection of objects. These objects have a property that decides whether they should be selected or not.
Now, I know it is not possible to bind a SelectColum to a property, because it is internally bound to the IsSelected row property, as I found in the following thread:
http://www.telerik.com/community/forums/silverlight/gridview/issue-with-quot-gridviewselectcolumn-quot.aspx
But now my question is this: Is it possible to bind the IsSelected property of the row, to a property on the underlying data-object for the row. (And how to do this?)
Illustration:
SelectColumn in grid -------(Bound to)-----> IsSelected property on row-object ------(Bound to)------> Property of data-object on which row is based.
I've been trying to do this today, with little or no success. Maybe someone could tell me if it's even possible?
Kind regards,
Neal