Hi,
I have added an Attachment custom attribute to my scheduler. To upload the attached files I use RadWindow. This is from AdvancedForm.ascx:
Everything works great until I add this control to my DNN site. Then the window shows the scheduler page instead of the upload page. What could be the problem?
Thanks,
Julia
I have added an Attachment custom attribute to my scheduler. To upload the attached files I use RadWindow. This is from AdvancedForm.ascx:
<script type="text/javascript"> |
function openRadWindow() |
{ |
var oWnd = radopen("DesktopModules/Calendar/AppointmentForms/UploadFiles.aspx", "RadWindow1" ); |
oWnd.center(); |
} |
</script> |
<telerik:RadWindowManager ShowContentDuringLoad="false" AutoSize="false" Skin="Vista" ID="RadWindowManager1" runat="server" VisibleStatusbar="false" Height="300px" Width="400px"> <Windows> <telerik:RadWindow ID="RadWindow1" runat="server" Title="File Upload" Height="300px" Width="400px" Left="200px" DestroyOnClose="true" VisibleStatusbar="false" ReloadOnShow="true" /> </Windows> </telerik:RadWindowManager> <
asp:Panel runat="server" ID="AdvancedControlsPanel" CssClass="rsAdvMoreControls">
|
<asp:Label runat="server" ID="lblAttachment"><%# ShowAttachments() %> </asp:Label><br /> |
<a href="#" onclick="openRadWindow(); return false;">Add files</a> |
Everything works great until I add this control to my DNN site. Then the window shows the scheduler page instead of the upload page. What could be the problem?
Thanks,
Julia