I have the following code in a aspx page. Thew window opens but it ignores the size settings. Even if i delete the RadWindowManager from the page it still opens. It seems as if it ignores the RadWindowManager on the page and just does what it wants. what am i doing wrong?
function EditClick(sender, args) {
window.radopen("campEdit.aspx?campID=" + sender,"CampEdit");
}
<telerik:RadWindowManager ID="RadWindowManager1" runat="server" onclientclose="RadWindowManager1_Close" CssClass="TelerikModalOverlay">
<Windows>
<telerik:RadWindow ID="CampEdit" runat="server" Title="Editing record" Height="675px"
Width="635px" Left="150px" ReloadOnShow="true" ShowContentDuringLoad="false"
Modal="true" VisibleStatusbar="false" AutoSize="false" Behaviors="Close" />
</Windows>
</telerik:RadWindowManager>
[EDIT]
It seems as if it is functioning off the RadWindowManager on the master page. How do i get it to use the RadWindowManager on the child page?
function EditClick(sender, args) {
window.radopen("campEdit.aspx?campID=" + sender,"CampEdit");
}
<Windows>
<telerik:RadWindow ID="CampEdit" runat="server" Title="Editing record" Height="675px"
Width="635px" Left="150px" ReloadOnShow="true" ShowContentDuringLoad="false"
Modal="true" VisibleStatusbar="false" AutoSize="false" Behaviors="Close" />
</Windows>
</telerik:RadWindowManager>
[EDIT]
It seems as if it is functioning off the RadWindowManager on the master page. How do i get it to use the RadWindowManager on the child page?