Say I have a RadGridView bound to this class:
public class UserActivityNoteDTO
{
public Guid ActivityNoteId { get; set; }
public string ActivityType { get; set; }
public string ActivityStage { get; set; }
public string EntityId { get; set; }
public string MemberId { get; set; }
}
When a cell is clicked I need to get the ActivityNoteId and what was clicked and the value. So if I click a member id, I need to get the ActivityNoteId and MemberId and know MemberId was clicked (and not EntityId).
I've seen examples where you can get the rowitem or cell value but not both.