Custom CSS

0
0

Hi,

I am trying to fix the problem with RDLC report viewer:

The issue is described here: https://stackoverflow.com/questions/45454067/tiny-boxes-appear-when-rendering-ssrs-reports-in-html-viewed-from-chrome

Suggestion is to update local app CSS style by adding following:

<style>
        body:nth-of-type(1) img[src*="Blank.gif"]
        {
            display: none;
        }
    </style>

Where can I add this in Wisej app?

Thanx,
D

  • You must to post comments
0
0

Hi Dino,

Sorry I wasn’t thinking :-). It’s part of an ASP.NET wrapped control so you can create a new .css file and add it using the script manager. This will inject it into the iFrame.

In the OnInit handler of the AspNet wrapped control, add this line:

this.ScriptManager.Scripts.Add(new System.Web.UI.ScriptReference("MyCssDocument.css"));

 

Let me know if that works for you!

Levie

  • You must to post comments
0
0

Hi Dino,

Did you try the Default.html page?

Regards,

Levie

  • You must to post comments
Showing 2 results
Your Answer

Please first to submit.