WebViewer does not display drop-down menu in UpdatePanel
Posted: Mon Aug 22, 2011 12:13 pm
I placed my webviewer control inside an ASP Update Panel. The report runs and displays correctly. However, the drop-down menu for Print and Save options does not show.
I've tried using different rendering modes with no success.
[/code]
Thanks!
I've tried using different rendering modes with no success.
Code: Select all
Code: Select all
StiReport report = new StiReport();
report.Load(Server.UrlDecode(filename));
if (report != null) {
StiSqlDatabase db = (StiSqlDatabase)report.Dictionary.Databases[0];
db.ConnectionString = dbConnector.GetConnectionString();
report.Dictionary.Databases.Clear();
report.Dictionary.Databases.Add(db);
webViewer.Report = report;
UpdatePanelReport.Update();
[/code]
Thanks!