HI I have written a Report in SSRS 2008, and have deployed using Reportviewer and ASP.net. When you run the report in the ASP.net, one little problem is that, the data is a grouping of product types, and you can click on the + sign, and then it provides details of what makes up the summary data. When you scroll down a bit, and then open the data, lets say towards the end of the groups. when it displays the details, it sort of repositions the page to the top. I guess the cursor is reset or so.
I have some overrides for some of the reports like this:
case "SpendingAnalysis":
cmbFilterBy.Enabled = true;
SetCategoriesVisibility(false);
SetMonthsVisibility(false);
SetSalesTypesVisibility(false);
SetCustomerTypeVisibility(true);
break;
I was wondering if a control could be placed here to fix the issue, or if not, where do you think the location is to fix in the ASP .net
I have some overrides for some of the reports like this:
case "SpendingAnalysis":
cmbFilterBy.Enabled = true;
SetCategoriesVisibility(false);
SetMonthsVisibility(false);
SetSalesTypesVisibility(false);
SetCustomerTypeVisibility(true);
break;
I was wondering if a control could be placed here to fix the issue, or if not, where do you think the location is to fix in the ASP .net