Hi. We recently upgraded to version 2010.1.415.35 and noticed all of RadWindows have a strange artifact at the top of the window. I have also noticed that the behavior of windows isn't consistent in IE6. It remembers the setting once and then reverts to the what looks like the style of the RadWindowManager. We're only seeing this behavior since upgrading from a 2008 release so maybe it happened somewhere between. I've attached a screen shot and a code snippet below. Thanks.
JS
ASPX
JS
function openRadWindow() { |
var oWnd = radopen("update_leave.aspx", "rwUpdateLeave"); |
oWnd.Center(); |
} |
ASPX
<a style="cursor: hand;" onclick="openRadWindow()"><img src="/images/rotator_edit.gif" width="11" height="11" alt="Update your leave status" /></a> |
<telerik:RadWindowManager ID="RadWindowManager1" runat="server" Skin="Windows7" VisibleStatusbar="false" DestroyOnClose="true" Animation="Fade" Behaviors="Close, Reload" Style="z-index: 7001;"> |
<Windows> |
<telerik:RadWindow ID="rwImage" runat="server" Skin="Windows7" NavigateUrl="image.aspx" AutoSize="false" VisibleStatusbar="false" DestroyOnClose="true" Animation="Fade" Behaviors="Close, Reload" Modal="true" Width="625px" Height="387px"> |
</telerik:RadWindow> |
<telerik:RadWindow ID="rwUpdateLeave" runat="server" Skin="Windows7" NavigateUrl="update_leave.aspx" AutoSize="false" VisibleStatusbar="false" DestroyOnClose="true" Animation="Fade" Behaviors="Close, Reload" Modal="true" Width="400px" Height="400px"> |
</telerik:RadWindow> |
</Windows> |
</telerik:RadWindowManager> |