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
1115
DataRowState
posted

How I can get DataRowState of WebDataGrid row? In old UltraWeb Grid I can do it by row.DataChanged

protected DataRowState GetGridRowState(GridRecord row)
{
DataRowState state = DataRowState.Unchanged;

 if (DataChanged.Added == row.DataChanged)
state = DataRowState.Added;

return state;
}