I use :
Window.showModalDialog(...)
to open a dialog window,
I want show some HTML code in this window, but I don't have a file. (Can't use URL to visit)
like show "hello world!" in this dialog window.
Can I do it?
|
I use :
to open a dialog window, I want show some HTML code in this window, but I don't have a file. (Can't use URL to visit) like show "hello world!" in this dialog window. Can I do it?
| ||||
|
feedback
|
|
Interesting question! I'm not an expert in modal dialogs, but I don't think you can, because it's in the nature of a modal dialog to block any further code from being executed until the window is closed again. I thought about using a
but according to the MSDN page on data: URIs, that will not be supported in Internet Explorer. (see the "Remarks" section on the linked page) It might work in Firefox, though: More on data URIs at Mozilla Developer Central
| ||||
|
feedback
|
|
Good question and answer. (+1) I just thought I'd add, that if you do need to enter HTML into a modal dialog, you may want to look into using a Javascript library to accomplish it. I've used Dojo's " You can check out a few example of Cheers. | |||
|
feedback
|