Hi,
When I delete a row from my datatable that my grid is bound to, the row in the grid still appears. So that the grid is refreshed I do the following:
m_dsDetail = m_fields.GetDetailCtrl
PrepareDetailColumns()
dgDetail.Rows.DataMember = m_dsDetail.Tables(0).TableName
dgDetail.Rows.DataSource = m_dsDetail
dgDetail_NodeSelectedChanging(Nothing, Nothing)
dgDetail_NodeSelectedChange(Nothing, Nothing)
so basically i'm refreshing the whole grid after I refreshed my dataset. Is there a more efficient way to do this ? (I've tried m_dsDetail.AcceptChanges but it wouldn't do)
Thanks