or
But my required Layout for the report is "Stepped Layout, Subtotals above". When I select this Layout for my report and try to drill down the report by clicking plus sign I get the following error.
An error has occured while processing table 'crosstab1'.
Index was outside the bounds of the array.
I am also attaching few iamges to show the fact.
Please also not that this particular error is only with Stepped Layout while with other Layouts it works fine. I wonder why, Please help me soon
voidTheReportViewer_RenderBegin(objectsender, Telerik.ReportViewer.Silverlight.RenderBeginEventArgs args){args.ParameterValues["SubjectId"] = subjectId;runOnce =true;}
navigateToReportAction1.Parameters.Add(new Telerik.Reporting.Parameter("SubjectId", "=Fields.SubjectId"));navigateToReportAction1.ReportDocumentType = "Application.Reports.ReportType.DetailReport, Application.Reports, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null";One or more parameters are not set or have invalid values.private bool runOnce = false;void TheReportViewer_RenderBegin(object sender, Telerik.ReportViewer.Silverlight.RenderBeginEventArgs args) { if (!runOnce) { args.ParameterValues["SubjectId"] = subjectId; runOnce = true; } }