Hello,
I am not being able to export both mastertable and detailtables. I can only export mastertable.. and no child records :(
I was able to do this in radgrid version 5.0.0.0 !
Private Sub dgVisits_ItemCommand(ByVal source As Object, ByVal e As Telerik.Web.UI.GridCommandEventArgs) Handles dgVisits.ItemCommand
If e.CommandName = "ExportXLS" Then
dgVisits.ExportSettings.IgnorePaging = True
dgVisits.ExportSettings.OpenInNewWindow = True
dgVisits.ExportSettings.ExportOnlyData = True
dgVisits.MasterTableView.ExportToExcel()
end if
End Sub
Thanks in advance
I am not being able to export both mastertable and detailtables. I can only export mastertable.. and no child records :(
I was able to do this in radgrid version 5.0.0.0 !
Private Sub dgVisits_ItemCommand(ByVal source As Object, ByVal e As Telerik.Web.UI.GridCommandEventArgs) Handles dgVisits.ItemCommand
If e.CommandName = "ExportXLS" Then
dgVisits.ExportSettings.IgnorePaging = True
dgVisits.ExportSettings.OpenInNewWindow = True
dgVisits.ExportSettings.ExportOnlyData = True
dgVisits.MasterTableView.ExportToExcel()
end if
End Sub
Thanks in advance