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

Window clipped on bottom

1 Answer 81 Views
Window
This is a migrated thread and some comments may be shown as answers.
dmc
Top achievements
Rank 1
dmc asked on 19 Aug 2011, 08:40 PM
My windows are all clipped at the bottom.  Telerik version v.2011.1.413.40 and Visual Studio 2010.  I am using radopen in javascript to open.  See attached document for screen shot.

master page:

        <telerik:RadWindowManager
            ID="radWM"
            ReloadOnShow="true"
            runat="server"
            OnClientPageLoad="OnClientPageLoad"
            ShowContentDuringLoad="true"
            Skin="Sunset">
            <Windows>
                <telerik:RadWindow
     runat="server"
                    ID="radWindow"
                    Width="600px"
                    Height="400px"
                    Behaviors="Close">
                </telerik:RadWindow>
            </Windows>
        </telerik:RadWindowManager>

javascript:

    var currentTime = new Date()
    var time = currentTime.getTime();
    Window = radopen(__prefixURL + 'Pages/Map/popMap.aspx?Mode=PP', "radWindow" + time);
    Window.setSize(900, 500);
    Window.moveTo(100, $(window).scrollTop() + 100);
    Window.set_title(arg.Title);

1 Answer, 1 is accepted

Sort by
0
Accepted
Shinu
Top achievements
Rank 2
answered on 22 Aug 2011, 02:20 PM
Hello,

It seems you have defined some global CSS styles applied to elements like: TABLE, TR, TD, UL and/or LI. If you have one, it will apply some additional styles to the controls.
Take a look in to the following forum thread which discussed similar issue.
Funny looking radWindow problem.

Thanks,
Shinu.
Tags
Window
Asked by
dmc
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or