This question is locked. New answers and comments are not allowed.
Hi There,
I am wondering if it is possible to configure the DynamicHyperLink or HyperLink columns so that when you open a new window you can disable the toolbars, menubars, etc. I'm currently doing this in the codebehind like so
Any help would be greatly appreciated.
I am wondering if it is possible to configure the DynamicHyperLink or HyperLink columns so that when you open a new window you can disable the toolbars, menubars, etc. I'm currently doing this in the codebehind like so
private static void PopUpNewWindow(string path)but this requires me to capture the click event and do a lot of additional work which I was hoping I could get at more easily.
{
var options = new HtmlPopupWindowOptions
{
Left = 0,
Top = 0,
Width = 800,
Height = 600,
Menubar = false,
Toolbar = false,
Location = false,
Directories = false,
Status = false,
Resizeable = true
};
if (HtmlPage.IsPopupWindowAllowed)
HtmlPage.PopupWindow(new Uri(path), "new", options);
}
Any help would be greatly appreciated.
