I
have an application, where i have used RadEditor inside a page with
uses master page, i have kept a button for export to PDF, the event
fires when i click the button , but nothing happens on screen , but
when i remove master page the code works like a charm.Below is the aspx code.
<asp:Button ID="ExportToPDFButton" runat="server" Text="Export to PDF" OnClick="ExportToPDFButton_Click" /> <telerik:RadEditor ID="ContentEditor" runat="server" ContentFilters="DefaultFilters,PdfExportFilter" Width="100%"> <ExportSettings OpenInNewWindow="true" /> <Content></Content> </telerik:RadEditor >Below is the aspx.cs code
protected void ExportToPDFButton_Click(object sender, EventArgs e) { ContentEditor.ExportToPdf(); }Does any one have faced the problem?
Thank You in advance!