This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

DEVELOPERS FORUM - Need help in creating a method that calls an html page

drchanix - Tuesday, April 21, 2009 11:54 AM:

Hi. I have created an html page. I need a method that calls this html page. Thanks.



RobMcAveney - Tuesday, April 21, 2009 12:09 PM:

Hi drchanix, and welcome.  Can you clarify a bit?  How do you want to open the html page?  In a separate window, on a tab, inside a form, some other way?  It may be as simple as the following, but it's hard to tell without more details:

window.open("../customer/test_page.html");

Rob



drchanix - Tuesday, April 21, 2009 12:13 PM:

Hi. I want to open it in a separate window.

Anyway, I have already solved it. Thanks to the idea of Rob.

     showModalDialog('../tests/test.html', 'test', 'help:0;resizable:1;status:0;');

I have added some parameters to retain only the close button. Minimize and maximize buttons are not visible.