0

I have a report in which i used two multivalue parameters Affiliate, TFN. Both fetch their available values using query. Affiliate is independent while TFN list is populated once Affiliate is selected. The report works fine when i run in development mode in ssrs. But when i deploy, it always gets stuck after i select the first parameter, Affiliate. All buttons are grayed out and i'll have to re-run the report. Report always gets stuck, regardless of the TFN result set size.

Any help would be highly appreciated.

aadi
  • 86
  • 6
  • All buttons are grayed out...does this mean all options in the affiliate control are grayed out or the TFN control is grayed out? – Ross Bush May 30 '14 at 02:30
  • Yes, all options are disabled. I have to re-run the whole report. – aadi Jun 03 '14 at 13:32

1 Answers1

0

Add ScriptMode="Release" to the scriptmanager object on your aspx webpage

<asp:ScriptManager ID="ScriptManager1" runat="server" ScriptMode="Release">
</asp:ScriptManager>
Waldir Leoncio
  • 10,853
  • 19
  • 77
  • 107
Sam
  • 1