Posted
on Jun 2, 2011
(permalink)
I have a button with the following JavaScript attached to it:
function ShowEditForm(id, rowIndex) {
var oWnd = window.radopen("CheckInformation.aspx?paymentid=" + id, "Cash Application");
oWnd.SetWidth(916);
oWnd.SetHeight(726);
oWnd.Behavior = "Close, Move"; // does not work
oWnd.set_status("Payment Match");
return false;
}
Basically I want to launch a pop-up window but I do not want user to resize that window. I thought setting only "Close" and "Move" should disable the resize but it doesn't.