Bookmark's information always visible

Stimulsoft Reports.WEB discussion
Post Reply
romulocpd
Posts: 73
Joined: Thu Oct 17, 2013 10:39 pm
Location: Nova Friburgo, Rio de Janeiro, Brasil

Bookmark's information always visible

Post by romulocpd »

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:
REPORT BOOKMARK 1.png
REPORT BOOKMARK 1.png (44.67 KiB) Viewed 1330 times
Whem the page view is in bottom area:
REPORT BOOKMARK 2.png
REPORT BOOKMARK 2.png (61.98 KiB) Viewed 1330 times
The user can't see the bookmarks. Would be very fine if the bookmarks panel is always showed, visible.

Thank you!
HighAley
Posts: 8430
Joined: Wed Jun 08, 2011 7:40 am
Location: Stimulsoft Office

Re: Bookmark's information always visible

Post by HighAley »

Hello.

Please set the ScrollbarsMode property of the viewer to true.

Thank you.
romulocpd
Posts: 73
Joined: Thu Oct 17, 2013 10:39 pm
Location: Nova Friburgo, Rio de Janeiro, Brasil

Re: Bookmark's information always visible

Post by romulocpd »

Hello.

I've changed the property, but if the property is true the report won't work anymore.

See the image:
REPORT BOOKMARK 3.png
REPORT BOOKMARK 3.png (14.28 KiB) Viewed 1325 times
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>
Thank you.
HighAley
Posts: 8430
Joined: Wed Jun 08, 2011 7:40 am
Location: Stimulsoft Office

Re: Bookmark's information always visible

Post by HighAley »

Hello.

You should also set the Height of Viewer.

Thank you.
Post Reply