I want to refresh or rebind a nested radgrid from a radbutton located outside of the grid. How do I get to the nested radgrid from here?
Private Sub rbtnSave_Click(sender As Object, e As System.EventArgs) Handles rbtnSave.Click
Try
If SaveBuilding() Then
'Dim GrantProjectID As Integer = Convert.ToInt32(Session(Const_Session.SELECTED_GRANT_PROJECT_ID).ToString)
'grvGroupBuildings.DataSource = GetGroupAgenciesDataSource(GrantProjectID)
'grvGroupBuildings.DataBind()
ShowMessage("Update saved!")
End If
Catch ex As Exception
ShowError(ex.Message)
End Try
End Sub
Private Sub rbtnSave_Click(sender As Object, e As System.EventArgs) Handles rbtnSave.Click
Try
If SaveBuilding() Then
'Dim GrantProjectID As Integer = Convert.ToInt32(Session(Const_Session.SELECTED_GRANT_PROJECT_ID).ToString)
'grvGroupBuildings.DataSource = GetGroupAgenciesDataSource(GrantProjectID)
'grvGroupBuildings.DataBind()
ShowMessage("Update saved!")
End If
Catch ex As Exception
ShowError(ex.Message)
End Try
End Sub