This is a migrated thread and some comments may be shown as answers.

RadGrid problem with Frames

2 Answers 62 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Jorge
Top achievements
Rank 1
Jorge asked on 14 Nov 2008, 06:46 PM
I have a big problem with filtermenu when i use the radgrid in a frame.
I have a web app in asp .net with frames the problem is when export the radgrid to excel the filtermenu is disabled, its disappear, when you click the button of filter the filter menu does not appear. This problem only happens in IE 7 after you export to excel, before that the radgrid works perfectly, now if you work in a page without frames works perfectly i think the problem are frames.

I use RadControls for Asp.net AJAX Q3 2008

2 Answers, 1 is accepted

Sort by
0
Yavor
Telerik team
answered on 18 Nov 2008, 07:35 AM
Hi Jorge,

Can you please post a small code snippet demonstrating your layout?

Kind regards,
Yavor
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
Jorge
Top achievements
Rank 1
answered on 18 Nov 2008, 02:26 PM
this resolved the problem in IE 7.0 when you have RadGrid with Frames and FilterMenu disabled after you call anyone of exporttoxxx function.of the RadGrid

<script type="text/javascript" language="javascript">
    function OnFilterMenuShowing(sender, args) 
    {
        sender._filterMenu.get_element().style.display = "block";
    }
</script> 

<telerik:RadGrid ...>
    ...    
    <ClientSettings ClientEvents-OnFilterMenuShowing="OnFilterMenuShowing"></ClientSettings>
</telerik:RadGrid>


In FireFox the RaGrid works perfectly with Frames.
Tags
Grid
Asked by
Jorge
Top achievements
Rank 1
Answers by
Yavor
Telerik team
Jorge
Top achievements
Rank 1
Share this question
or