Hi,
So I have 2 grids in my page. Selecting on a row in top grid, results in new data in the 2nd grid.
I have a NeedDataSourceHandler in the second grid, but I am not able to retrieve the primary key of the row in the 1st grid
that was cliecked on ....
| Protected Sub ReptSummaryGrid_NeedDataSource(ByVal source As Object, ByVal e As Telerik.Web.UI.GridNeedDataSourceEventArgs) Handles ReptSummaryGrid.NeedDataSource |
| If e.IsFromDetailTable Then |
| LoadReportsSummary(8) |
| End If |
| End Sub |
The SelectedValue property of the 'source' is always coming as Nothing....
Any help is appreciated...