Hello.
When I create a bookmark in my report the result is excelent, but I have a problem. When the user scrool down the page, the bookmarks information don't go to down too.
See the image:
Whem the page view is in bottom area:
The user can't see the bookmarks. Would be very fine if the bookmarks panel is always showed, visible.
Thank you!
Bookmark's information always visible
Re: Bookmark's information always visible
Hello.
Please set the ScrollbarsMode property of the viewer to true.
Thank you.
Please set the ScrollbarsMode property of the viewer to true.
Thank you.
-
- Posts: 73
- Joined: Thu Oct 17, 2013 10:39 pm
- Location: Nova Friburgo, Rio de Janeiro, Brasil
Re: Bookmark's information always visible
Hello.
I've changed the property, but if the property is true the report won't work anymore.
See the image: My csthml code
Thank you.
I've changed the property, but if the property is true the report won't work anymore.
See the image: My csthml code
Code: Select all
@using System.Web.UI.WebControls;
@using Stimulsoft.Report.Mvc;
@{
ViewBag.Title = Session["TituloMRT"].ToString();
}
<div style="display: block;">
@Html.Stimulsoft().StiMvcViewer(new StiMvcViewerOptions() {
Theme = StiTheme.Office2007Blue,
ActionGetReportSnapshot = "DadosExibicaoRelatorio",
ActionViewerEvent = "ViewerEvent",
ActionPrintReport = "PrintReport",
ActionExportReport = "ExportReport",
ActionInteraction = "Interaction",
ClientRequestTimeout = 60,
Localization = "~/Content/Reports/Localization/pt-BR.xml",
ShowTooltips = true,
ScrollbarsMode = true,
BackColor = System.Drawing.Color.Gray
})
</div>
Re: Bookmark's information always visible
Hello.
You should also set the Height of Viewer.
Thank you.
You should also set the Height of Viewer.
Thank you.