Quantcast
Channel: SCN : Discussion List - SAP Crystal Reports, version for Visual Studio
Viewing all articles
Browse latest Browse all 3636

Asp ReportViewer UI issues

$
0
0

On developing a new version of our apps we tried to update CrystalReports in our solution one more time. Before we've faced this bug, but now it has gone and reports are rendered without any critical errors. However we need to adapt ReportView look to the design of our app, and we don't really know how to dothat correctly. At first a page with 13.0.2000 should look like a page with 10.5 The difference between these two versions is better described by screenshots (both in Chrome 32, Win 8.1 x64):

old_reportview.png

 

Page with CrystalReports 10.5. We have our custom toolbar conntected with ReportViewer with the help of updatePanel. Report is paginated but no page background is rendered, viwer ui is pretty clean.

Declaration:

<asp:UpdatePanel ID="upd" runat="server" UpdateMode="Conditional">

  <ContentTemplate>

<CR:CrystalReportViewer ID="StatReportViewer" runat="server"

  AutoDataBind="false" DisplayToolbar="False"  EnableDatabaseLogonPrompt="False"

  EnableParameterPrompt="False" SeparatePages="True"

  OnNavigate="CrystalReportViewer_Navigate" DisplayGroupTree="False" />

  </ContentTemplate>

  <Triggers>

  <asp:AsyncPostBackTrigger ControlID="firstPage" EventName="click" />

  <asp:AsyncPostBackTrigger ControlID="prevPage" EventName="click" />

  <asp:AsyncPostBackTrigger ControlID="nextPage" EventName="click" />

  <asp:AsyncPostBackTrigger ControlID="lastPage" EventName="click" />

  <asp:AsyncPostBackTrigger ControlID="searchButton" EventName="click" />

  </Triggers>

  </asp:UpdatePanel>

 

new_reportview.png

Page with CrystalReports 13.0.2000. Native viewer toolbar looks very inaccurate in Chrome. Report is viewed in a page-frame on dark-gray background without any scrollbar inside Viewer itself and with wide borders of two different colors around control (left border is gey and right one is light-grey). Declaration:

<div id="upd">

<CR:CrystalReportViewer ID="StatReportViewer" runat="server"

AutoDataBind="false" DisplayToolbar="True"  EnableDatabaseLogonPrompt="False"

EnableParameterPrompt="False" SeparatePages="True"

DisplayPage="true" DisplayStatusbar="False" EnableDrillDown="False"

HasCrystalLogo="False" HasDrilldownTabs="False" HasDrillUpButton="False"

ToolPanelView="None" HasToggleGroupTreeButton="False" HasToggleParameterPanelButton="False" />

</div>

 

In short we want Viewer from the new version look like from the old one. This mean two things:

  1. Using our own toolbar instead of Viewer's native one. Ok, I can make a css-hack and place our own toolbar in front of the native and then trigger the click events on the Viewer's toolbar buttons. But may be there is another way? Here pre-last feature of ASP.NET version is "ASP.NET CrystalReportViewer custom toolbars– Create a custom toolbar that offers all the functionality of the default CrystalReportViewer toolbar". So may be there is a way to make it without any hacks?
  2. Make the view of the report data clean, without any backgrounds or borders, but with pagination. Of course css hacks is also applicable here, but I still hope that there is some rendering params in ReportViewer that will help to do that (DisplayPage="false" results in rendering an empty Viewer somehow). Any suggestions?

 

Thanks in advance for any helpful answers!


Viewing all articles
Browse latest Browse all 3636

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>