or
Private
Sub
_GenerateReport()
Dim
SeasonReport
As
New
CISReports.NBA_PlayerShotChart()
' perform additional operations on the report object if needed
Dim
SeasonInstanceReportSource
As
New
Telerik.Reporting.InstanceReportSource()
SeasonInstanceReportSource.ReportDocument = SeasonReport
Me
.ReportViewer1.ReportSource = SeasonInstanceReportSource
Dim
SeasonReportSource =
Me
.ReportViewer1.ReportSource
SeasonReportSource.Parameters.Add(
"Season"
,
CInt
(cmbSeason.SelectedValue))
SeasonReportSource.Parameters.Add(
"SeasonTypeID"
,
CInt
(cmbSeasonType.SelectedValue))
SeasonReportSource.Parameters.Add(
"TeamAbbr"
, cmbTeams.SelectedValue)
SeasonReportSource.Parameters.Add(
"PlayerID"
,
CInt
(cmbPlayer.SelectedValue))
End
Sub
Try reloading the page."
Please check for above and correc this asap.private
void
subReport1_ItemDataBound(
object
sender, EventArgs e)
{
Processing.SubReport subReport = (Processing.SubReport)sender;
Processing.Report detailReport = (Processing.Report)subReport.InnerReport;
Processing.Report mainReport = (Processing.Report)subReport.Report;
mainReport.Visible = detailReport._filteredCount > 0;
}