Completed
Last Updated: 20 Jul 2015 14:14 by ADMIN
Created by: Sunil Sutar
Comments: 1
Category: Grid
Type: Bug Report
0
Hi Team,

Please go through the ticket.
http://www.telerik.com/account/support-tickets/view-ticket.aspx?threadid=821301

Here' there is javascript error on Filter click. We have attached the example in first thread.

The example contains a grid with a runtime header column addition. When the filters are on with Grid, clicking any of the filter icon to open "filter menu" causes a JavaScript error.

 If we skip the code to add "Runtime header column", there is no such error. But there is requirement of our client to have such header "Skip to Content" button in the header above filter.

Please see,
 - We are using a webcontrol, AECTelerikGrid as attached.
 - This should display "Skip to Content" in the header bar.
 - After this, click on any of the filters and this will result in JS error as attached.



Thanks,
Sunil
Declined
Last Updated: 20 Jul 2015 14:14 by ADMIN
Completed
Last Updated: 20 Jul 2015 14:14 by Christoph Köchling
Completed
Last Updated: 20 Jul 2015 14:14 by ADMIN
Completed
Last Updated: 20 Jul 2015 14:14 by ADMIN
Declined
Last Updated: 20 Jul 2015 14:14 by Claus
Completed
Last Updated: 20 Jul 2015 14:14 by ADMIN
Completed
Last Updated: 20 Jul 2015 14:14 by ADMIN
Completed
Last Updated: 20 Jul 2015 14:14 by ADMIN
Completed
Last Updated: 20 Jul 2015 14:14 by ADMIN
Completed
Last Updated: 20 Jul 2015 14:14 by ADMIN
Completed
Last Updated: 20 Jul 2015 14:14 by ADMIN
Completed
Last Updated: 20 Jul 2015 14:14 by FRANK
Completed
Last Updated: 20 Jul 2015 14:14 by ADMIN
Sample code: 

<asp:Button ID="Button1" runat="server" Text="Export" />
<telerik:RadGrid ID="RadGrid1" runat="server">
    <ExportSettings OpenInNewWindow="true" />
</telerik:RadGrid>

void RadGrid1_PdfExporting(object sender, Telerik.Web.UI.GridPdfExportingArgs e)
{
    e.RawHTML = "<a href="absolute url to pdf file">dasdasdasdas</a>";
}

protected void Button1_Click(object sender, EventArgs e)
{
    RadGrid1.MasterTableView.ExportToPdf();            
}