Hi,
The Web Report shows fine if you view the Web Report, but in Smart UI, everything is blank.
Web Report
That Web Report in Smart UI
Just to let you know the documentation for this widget is at https://knowledge.opentext.com/knowledge/piroot/lleswebr/v160208/lleswebr-agd/en/html/webr-widgets-htmlwebrep-bg.htm
This references a coupe of example templates that demonstrate ways you can build WebReports that work with the Smart UI to avoid style conflicts. There are also some simple Javascript examples.
Are you using any third-party libraries for the tabs in this example?
RegardsIan
I got this working by pulling in the RSS feed HTML page in the Web Report with an Iframe.
Yes, it is the correct way.
If you place a Smart UI widget to a foreign portal page, it will not conflict with it, because the pagent element of the widget will contain a CSS namespace - the class "binf-widgets" which enables Smart UI styling only below this parent element.
However, if you put a some content into a Smart UI widget, like the TileReport widget does it, the content will be within the Smart UI namespace and thus affected by it. Either you will supply some styling together with your HTML markup to override what Smart UI imposed to it, or you will use an iframe to start with a "clean slate". (Using a custom element with shadow dom would be probablku too much here.)