Hi there.
I’ve got a problem I can’t seem to find a solution for and would be grateful of any ideas out there.
I’m trying to display a Notes view via a page on the company’s intranet for users to click on a link to open and complete a domino web-form.
I’ve been playing around with the “iframe” tag and have used the following code to some effect. (I’ve removed the <> from my tags in this code as my last post actually generated the Iframe on this forum!)
iframe src=“http://sldcdd1.csda.gov.au/apps/local/cat/cattest.nsf/35415391554FAB6FCA257439000A8827”
target=“_blank”
width=“600”
height=“90”
scrolling=“auto”
frameborder=“0”
/iframe
The view displayed consists of one column with the following code to display all available webforms as links where ‘QuestionaireID’ is the unique id of each individual webform and ‘QuestionaireTitle’ is just the text title of the webform link…
_login := @If($PublicAccess=“1”;“”;“&login”);
_url := “/” + @WebDbName + “/openQuestionnaire?openagent&id=” + QuestionaireID + _login;
“” + @NewLine +
“” + “<a href="” + _url + “">” + QuestionaireTitle + “ ” +
@NewLine
This successfully displays the view on the page in the defined area however when I click on the links the webform is opened in the iframe window and no matter what I change the target parameter to (I’ve tried _top, _self, _blank) I can not get the webform to launch in a new window.
I have been able to get it to work by embedding the view in a notes page and then display that in the Iframe, however I really do need to be able to reference a view on it’s own so I can custom build other views and reference them without having to go through design changes.
Many thanks in advance.
Dave