HI Vladminir,
Thanks for your reply. Here I have cleared my browser cache also but still problem persist. So let me post my code here which can help you to reproduce the issue.
ASPX:
eCat Report Management
Code Behind:
protected void Page_PreInit(object sender, EventArgs e)
{
#region Designer Configuration Settings
StiSettings.DefaultReportSettingsPath = Server.MapPath("ProjectResources");
StiOptions.Designer.AllowUseDragDrop = true;
StiOptions.Designer.AllowUseWinControl = true;
StiOptions.Designer.TabsContextMenu.ShowFormNew = true;
StiOptions.Designer.PropertyGrid.AllowShowConfiguration = true;
StiOptions.Designer.PropertyGrid.Localizable = true;
StiOptions.Designer.PropertyGrid.ShowDescription = true;
//StiOptions.Designer.PropertyGrid.PropertyLevel = Stimulsoft.Base.StiLevel.Professional;
StiWebDesignerOptions.MainMenu.ShowNew = false;
StiWebDesignerOptions.MainMenu.ShowOpenReport = false;
StiWebDesignerOptions.MainMenu.ShowDeletePage = false;
StiWebDesignerOptions.MainMenu.ShowSaveAs = false;
StiWebDesignerOptions.MainMenu.ShowClose = false;
StiWebDesignerOptions.MainMenu.ShowExitButton = true;
StiWebDesignerOptions.Toolbar.ShowDictionaryTab = true;
StiWebDesignerOptions.Toolbar.ShowPreviewReportTab = true;
StiWebDesignerOptions.Toolbar.ShowCodeTab = true;
}
protected void StiWebDesigner1_PreInit(object sender, StiWebDesigner.StiPreInitEventArgs e)
{
StiWebDesigner1.Exit += new Stimulsoft.Report.Web.StiWebDesigner.StiExitEventHandler(StiWebDesigner1_Exit);
}
protected void StiWebDesigner1_Exit(object sender, StiWebDesigner.StiExitEventArgs e)
{
if (ReportType == ReportType.Summary)
{
StiWebDesigner1.ExitUrl = "~/Report.aspx?Id=" + gid;
}
else if (ReportType == ReportType.Detail)
{
StiWebDesigner1.ExitUrl = "~/ReportDetailType.aspx?Id=" + gid;
}
}
Above code may help you to reproduce the issue. Please assist me if there are any other way to resolve this.
Thank for you co-operation.
Regards,
Pratik