Hi Brad,
In order to have the dialog to open a Url, you would need to:
1. Give it a Url on the server side. You will then "change" a dialog's Url on the client side;
2. Change the dialog's Url on the client side by calling setContentUrl function:
http://www.essentialobjects.com/ViewDoc.aspx?t=JSDoc.Public.Dialog.setContentUrl.htmlThe following code snipet shows how to call it:
Code: JavaScript
function showDialog(url)
{
var dialog = eo_GetObject("your_dialog_id");
dialog.setContentUrl(url);
dialog.show(); //or dialog.show(true/false);
}
Thanks