Hi,
I have a rad window manager and rad window in a page. and i open the rad window at client side. i set the size even then i am not able to open the window with the size fixed.
/// <summary>
/// This method helps in opening the window for the popup messages
/// </summary>
public void OpenWindow(Telerik.Web.UI.RadWindowManager rwmdialogue)
{
rwmdialogue.Windows.Clear();
Telerik.Web.UI.RadWindow newwin = new Telerik.Web.UI.RadWindow();
newwin.ID = "rddialog";
newwin.NavigateUrl = "popupmessages.aspx";
newwin.VisibleOnPageLoad = true;
newwin.Width = 600;
newwin.Height = 30;
newwin.Modal = true;
newwin.VisibleStatusbar = false;
newwin.VisibleTitlebar = false;
newwin.DestroyOnClose = true;
rwmdialogue.Windows.Add(newwin);
}
i have convered this to pixel / unit nothing works out
Please need help to open the rad window in the specified size.
I have a rad window manager and rad window in a page. and i open the rad window at client side. i set the size even then i am not able to open the window with the size fixed.
/// <summary>
/// This method helps in opening the window for the popup messages
/// </summary>
public void OpenWindow(Telerik.Web.UI.RadWindowManager rwmdialogue)
{
rwmdialogue.Windows.Clear();
Telerik.Web.UI.RadWindow newwin = new Telerik.Web.UI.RadWindow();
newwin.ID = "rddialog";
newwin.NavigateUrl = "popupmessages.aspx";
newwin.VisibleOnPageLoad = true;
newwin.Width = 600;
newwin.Height = 30;
newwin.Modal = true;
newwin.VisibleStatusbar = false;
newwin.VisibleTitlebar = false;
newwin.DestroyOnClose = true;
rwmdialogue.Windows.Add(newwin);
}
i have convered this to pixel / unit nothing works out
Please need help to open the rad window in the specified size.