Is there a way to make a html page (link stored in a column in a KNIME table) (e.g. https://forum.knime.com/t/accepted-solutions/41359) visible in an Interactive View /Component . It’s not a problem if the links on the page don’t work.
gr. Hans
It is achieved through an iframe in JavaScript as follows:
var body = document.getElementsByTagName('body')[0];
var html = '<h1>Make a HTML page visible in a Interactive View / Component?</h1>';
html += '<iframe src="https://www.knime.com" id="serverurl" width="800" height="600"></iframe>';
body.innerHTML = html;
Tnx, It works for www.knime.com (and some other websites) but not for (the sub-pages of) forum.knime.com (and a lot of other websites).
It looks like it has something to do with that some (most) websites add x-frame-options headers (deny or sameorigin) to ensure that their content is not embedded into other sites.
Or maybe I’m overlooking something else?
gr. Hans
Hi, I have a similar topic. In fact I want to see several things via a KNIME application accessed via our webportal. I used the technique above an see the knime web page, I also see a sharepoint site of our internal sharepoint. But I do not see:
a SAC story
a document or library within our sharepoint
a wiki page within our internal sharepoint wiki
any suggestion what to consider? Still waiting for the promised answer from @aworker