This is a migrated thread and some comments may be shown as answers.

Rad Window size is not getting fixed in Mozill and IE

1 Answer 88 Views
Window
This is a migrated thread and some comments may be shown as answers.
Arockia J
Top achievements
Rank 1
Arockia J asked on 08 Apr 2010, 11:25 AM
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.

1 Answer, 1 is accepted

Sort by
0
Fiko
Telerik team
answered on 09 Apr 2010, 02:17 PM
Hi Arockia,

I have answered your support ticket. For your convenience I have pasted the answer here as well:

"The RadWindow's client-side object exposes getters and setters methods for its properties. For example, you need to use the set_width(value) or set_height(value) methods in order to apply the desired size to the RadWindow object. Alternatively you can use the setSize(width, height) method. More information about the RadWindow's client-side API can be found on this page."

All the best,
Fiko
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
Tags
Window
Asked by
Arockia J
Top achievements
Rank 1
Answers by
Fiko
Telerik team
Share this question
or