Hello.Am trying to assign radwindow popup properties from code behind so as i can open a popup.However ,the radwindow does not pick the sizes am allocating.Any idea how i can solve this.Below is how i am assigning it
RadWindowManager radWindow = new RadWindowManager();
RadWindow newWindow =new RadWindow();
newWindow.Modal = true;
newWindow.AutoSize = false;
newWindow.Left = Unit.Pixel(70);
//newWindow.Width = Unit.Pixel(470);
//newWindow.Height = Unit.Pixel(470);
newWindow.NavigateUrl = "Registration.aspx";
newWindow.VisibleOnPageLoad = true;
newWindow.Attributes.Remove("Height");
newWindow.Attributes.Remove("Width");
//newWindow.Attributes.AddAttributes("Width", "470px");
//newWindow.Attributes.AddAttributes("Height", "470px");
newWindow.Attributes.Add("Width", "470px");
newWindow.Attributes.Add("Height", "470px");
newWindow.OnClientClose = "refreshRegistration";
RadWindowManager1.Windows.Add(newWindow);
Any solution why radwindow the radwindow cannot pick the sizes?Even the OnClientClose is not showing any response
Mark as answer if satisfied