Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
5549
Got error in RowUpdated
posted

 

 Hi, when i change something in a cell, the rowupdated event will be fire.
but i have always nothing in the row object.

Public Sub WebDataGrid1_RowUpdated(ByVal sender As Object, ByVal e As Infragistics.Web.UI.GridControls.RowUpdatedEventArgs

)

 

 

 

'Dim id As IDPair = e.RowID

 

 

 

'Dim row As GridRecord = WebDataGrid2.Rows.FromIDPair(id)

 

 

 

'' //update the row in the databas

 

 

 

Dim row As GridRecord = Me

.WebDataGrid2.Rows.FromIDPair(e.RowID)

 

 

 

End

Sub

i attached an image of the debugger. you can see i got an error in the e.rowid, but in the value i have the correct id from the database. (i bind a dataset to the webdatagrid)