Re: getting the row number in a datagrid
matt.torline_at_bissell.com
Date: 12/29/04
- Next message: Prodip Saha: "Re: meta refresh loosing the viewstate on the TextBox"
- Previous message: VV: "showModalDialog and asp.net"
- In reply to: 2obvious: "getting the row number in a datagrid"
- Messages sorted by: [ date ] [ thread ]
Date: 29 Dec 2004 06:13:08 -0800
Use can use the parent control to find the index. All Controls have
parents and children, you can move up and down the node list to find
the one you are looking for. You can shorten the code, I just wanted
to make sure you saw the levels. Also a while back I was trying to
deal with CustomValidators in datagrids, I seem to recall some issues
with that just FYI. Hope this helps AuSable Troutbum
'Find the The control that is firing event
Dim valCustomControl As New CustomValidator
valCustomControl = sender
'Find the Parent Cell of Validation Control
Dim cell As TableCell = valCustomControl.Parent
'Find the Datagrid Item
Dim dgItem As DataGridItem = cell.Parent
'Set the Row
Dim myRow As DataRow =
DataSet.Tables("YourTableName").Rows(dgItem.ItemIndex)
- Next message: Prodip Saha: "Re: meta refresh loosing the viewstate on the TextBox"
- Previous message: VV: "showModalDialog and asp.net"
- In reply to: 2obvious: "getting the row number in a datagrid"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|