I am using a RadWindowManager to manage a window that popups up when I click on a control in a TreeList column. The window appears using the OnClick="ShowExisting1();return false;" attribute of the control but does not behave correctly. Here is how I coded it:
<telerik:RadWindowManager ID="RadWindowManager1" runat="server">
<Windows>
<telerik:RadWindow ID="RadWindow1" runat="server" NavigateUrl="http://google.com"
Skin="Windows7" Animation="Fade" VisibleStatusbar="false" Behaviors="Close" MaxHeight="200px" MaxWidth="200px"
MinHeight="200px" MinWidth="200px" InitialBehaviors="Pin" />
</Windows>
</telerik:RadWindowManager>
but the window behaves like I did:
<telerik:RadWindow ID="RadWindow1" runat="server" />
I have tried the two different declarations and they produce the same result, as if all the specifications I demanded are ignored. What seems to be the problem?
I found another way of setting the attributes client-side using some javascript properties: