Hi,
I am creating a custom popup to ask a user a question then have a Yes/No selection. My method in doing this is when the popup needs to be shown, I will use javascript to open the popup page:
var newwindow;
function popup(url)
{
newwindow=window.open(url,'name','height=400,width=200');
if(window.focus){newwindow.focus()}
}
I have an HTM page that I have saved to my module, that is simple right now. It has a text prompt and it has a Yes and No button on the page.
I am trying to call the popup page from a page on my module with
PopUpThe problem i am having is that it is saying the page cannot be found. Is there a way to do this? I can dynamically create a popup with Javascript generator.document.write and it all shows up fine, but I would rather have a page that I can use as a template for all my Yex/No popups.
Part of what I dont want is having all the other DNN stuff surrounding the popup, such as the navigation bar, the headers at the top etc.
Thanks for any help.
Chris