Missing DropDownButtons
Posted: Mon Jul 07, 2014 1:16 pm
Hi, i'm using the .NET MVC component. I'm creating a new report with user input variables, but all dropdown-buttons of the datetimepicker aren't visible. Everything else works.
I got the following css code from the viewer
Can you help me to fix this?
Here is my View:
btw, i tried different themes. But no button will be displayed.
Greetz haggis
I got the following css code from the viewer
Code: Select all
.stiDropDownButton {
background: url('[DropDownButton.gif]');
}
Here is my View:
Code: Select all
<%@ Page Language="C#" MasterPageFile="~/Views/Shared/Page.Master" Inherits="System.Web.Mvc.ViewPage<dynamic>" %>
<%@ Import namespace="Stimulsoft.Report.Mvc" %>
<%@ Register Assembly="Ext.Net" Namespace="Ext.Net" TagPrefix="ext" %>
<asp:Content ID="Content1" ContentPlaceHolderID="HeadContent" runat="server">
<%= Html.Stimulsoft().RenderMvcViewerScripts() %>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="GridContent" runat="server">
<%= Html.Stimulsoft().StiMvcViewer("ReportViewer",new StiMvcViewerOptions() {
ActionGetReportSnapshot = "GetReportSnapshotViewer",
ActionViewerEvent = "ViewerEvent",
ActionPrintReport = "PrintReport",
ActionExportReport = "ExportReport",
ActionInteraction = "Interaction",
ScrollbarsMode = true,
Theme = StiTheme.Office2003
}) %>
</asp:Content>
Greetz haggis