View Single Post
  #2 (permalink)  
Old 09-04-2008, 5:54 PM
rcombs4 rcombs4 is offline
VB.NET Forum Newbie
.NET Framework: .NET 2.0 (VS 2005)
 
Join Date: Aug 2008
Posts: 9
Reputation: 0
rcombs4 is on a distinguished programming path ahead
Default

Maybe i dont understand what you are trying to do. From my understanding you are trying to allow the user to select a row but then push the grid into edit mode? Why dont you just have an edit button? Then you can create the 'editing' method and I believe that will keep your radiobuttonlist intact.

meaning:
on the gridview allow the row to be edited by setting AutoGenerateEditButton to true.

Then in code create the Gridview->RowEditing method. From here you access the radiobuttonlist.

If that doesnt work I think you may have to re work your logic. Might have to make it so you cannot change the radiobuttonlist's selected item untill you are in edit mode.
Reply With Quote