I am trying to conditionally update my updatepanel based on changes that have been made to my gridview. I am having trouble. This is inside the BugsGridView_RowUpdated function.
if ( /*Changes have been made to gridview */)
{
ActivityUpdatePanel.Update();
}
Thanks!
Did you try assigning your
GridViewas a trigger of yourUpdatePanelin you aspx?I am not sure about the event name RowUpdated though.
Edit: maybe the correct event is RowUpdating