Page 1 of 1

Bookmark's information always visible

Posted: Wed Mar 12, 2014 5:01 pm
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 1331 times
Whem the page view is in bottom area:
REPORT BOOKMARK 2.png
REPORT BOOKMARK 2.png (61.98 KiB) Viewed 1331 times
The user can't see the bookmarks. Would be very fine if the bookmarks panel is always showed, visible.

Thank you!

Re: Bookmark's information always visible

Posted: Thu Mar 13, 2014 6:49 am
by HighAley
Hello.

Please set the ScrollbarsMode property of the viewer to true.

Thank you.

Re: Bookmark's information always visible

Posted: Thu Mar 13, 2014 9:22 am
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 1326 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.

Re: Bookmark's information always visible

Posted: Thu Mar 13, 2014 10:57 am
by HighAley
Hello.

You should also set the Height of Viewer.

Thank you.