Hi Guys,
I am trying to display an aspx page in a radWindow. I can get the webPage to load in the RadWindow but it only shows me CheckBoxes and none of my buttons.
I have tried many ways of trying to get this to display correctly but have failed everytime. my last attempt just loads a blank RadWindow,its probably a simple fix could someone please help me out.
Here is my aspx page i need loaded into my RadWindow
As you can see this is very short, All that i need is when a user clicks on a button the RadWindow will appear and display the following CheckBoxes and Buttons inside of the rad window.
Here is the javascript i am using to call the RadWindow
And here is the RadWindowManager from the Page it is being called from
This does not give me any errors the RadWindows is displayed But without any Controls.
Thank you in advance
I am trying to display an aspx page in a radWindow. I can get the webPage to load in the RadWindow but it only shows me CheckBoxes and none of my buttons.
I have tried many ways of trying to get this to display correctly but have failed everytime. my last attempt just loads a blank RadWindow,its probably a simple fix could someone please help me out.
Here is my aspx page i need loaded into my RadWindow
<body id="SendNotifications"> <telerik:RadStyleSheetManager ID="RadStyleSheetManager1" runat="server"> <StyleSheets> <telerik:StyleSheetReference Path="~/Styles/Site.css" /> <telerik:StyleSheetReference Path="~/App_Themes/Skins.skin" /> </StyleSheets> </telerik:RadStyleSheetManager> <form id="form1" runat="server"> <div class="oops"> <asp:ScriptManager ID="notifyScriptManager" runat="server" /> <telerik:RadFormDecorator ID="RadFormDecorator1" runat="server" Skin="Office2010Silver" DecoratedControls="All" /> <asp:FormView ID="NotificationForm" runat="server" Width="100%" Height="300px" > <EditItemTemplate> <table class="IncDetails"> <tr> <td> <asp:CheckBox runat="server" ID="chkIncLogger" Checked="false" Text="Notify Incident Logger" /> </td> <td> <asp:CheckBox runat="server" ID="chkIncAssignee" Checked="true" Text="Notify Current Assignee" Enabled="false" /> </td> <td> <asp:CheckBox runat="server" ID="chkNotifyManager" Checked="false" Text="Notify Notify Manager" /> </td> <td> <asp:CheckBox runat="server" ID="chkIncDistList" Checked="false" Text="Notify Distribution List " /> </td> </tr> <tr> <td> <asp:CheckBox runat="server" ID="chkIncCreator" Checked="false" Text="Notify Incident Creator" /> </td> <td> <asp:CheckBox runat="server" ID="chkIncOrigAssignee" Checked="false" Text="Notify Original Assignee" Enabled="false" /> </td> <td> <asp:CheckBox runat="server" ID="chkIncConsumer" Checked="false" Text="Notify Consumer" Enabled="false" /> </td> </tr> <tr> <td> <asp:Button ID="btnSave" runat="server" Text="Save" /> </td> <td> <asp:Button ID="btnClose" runat="server" Text="Close" /> </td> </tr> </table> </EditItemTemplate> </asp:FormView> </div> </form></body></html>As you can see this is very short, All that i need is when a user clicks on a button the RadWindow will appear and display the following CheckBoxes and Buttons inside of the rad window.
Here is the javascript i am using to call the RadWindow
function ShowNotificationForm() { window.radopen("/Inc/Notifications.aspx", "NotifyDialog"); return false; }And here is the RadWindowManager from the Page it is being called from
<telerik:RadWindowManager ID="RadWindowManager1" runat="server"><Windows><telerik:RadWindow ID="NotifyDialog" runat="server" ReloadOnShow="true" ShowContentDuringLoad="false" Modal="true" Width="900px" Height="760px"></telerik:RadWindow></Windows>This does not give me any errors the RadWindows is displayed But without any Controls.
Thank you in advance