I have a grid where I am using an ItemTemplate column with a CheckBox for row selection. If one of the columns has a particular value the row should not be selected again and I disable the checkbox for that row in the ItemDataBound event. Another column in that same row has a long string value that I want to popup a form where I can format and display the string in a user friendly way. It was all working until I decided to disable the checkbox. Disabling the checkbox also diables the ability to select the row. Now when I try to get the value for the row it fails because RadGrid1.SelectedItems.Count is 0. Is there a way to get the index of the double clicked row, or leave selection of the row enabled?