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

Missing Filter Buttons

4 Answers 96 Views
GridView
This is a migrated thread and some comments may be shown as answers.
Daniel Walton
Top achievements
Rank 1
Daniel Walton asked on 16 Apr 2010, 01:48 PM
I just upgraded a SL3 project to SL4 with Telerik tools for SL 4 RC. Now all my GridViewDataColumns are missing the filter icon. If I remove the Columns and set RadGridView.AutoGenerateColumns=true, voila, the filter icons are back. What's going on here?Thanks,

<navigation:Page x:Class="Raps.Views.junk"  
           xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"  
           xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"  
           xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
           xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
           mc:Ignorable="d" 
           xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" 
           xmlns:riaControls="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.DomainServices"  
           xmlns:rapsdata="clr-namespace:Raps.Web.Services"             
           xmlns:navigation="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Navigation" 
           d:DesignWidth="640" d:DesignHeight="480" 
           Title="junk Page"
     
    <Grid x:Name="LayoutRoot"
         
        <!-- Data source for both grids --> 
        <riaControls:DomainDataSource x:Name="myData" QueryName="GetDistributions" AutoLoad="True" LoadSize="100"
            <riaControls:DomainDataSource.DomainContext> 
                <rapsdata:RapsDomainContext /> 
            </riaControls:DomainDataSource.DomainContext> 
        </riaControls:DomainDataSource> 
         
        <StackPanel Orientation="Vertical" > 
             
            <!-- This grid is missing the filter icons --> 
            <telerik:RadGridView x:Name="brokenGrid" AutoGenerateColumns="False" 
                        ItemsSource="{Binding Data, ElementName=myData}" IsReadOnly="True" Height="300"
                <telerik:RadGridView.Columns> 
                    <telerik:GridViewDataColumn DataMemberBinding="{Binding CreatedBy}" Header="User" IsFilterable="True" /> 
                    <telerik:GridViewDataColumn DataMemberBinding="{Binding Customer.CustName}" Header="Shipto Name" /> 
                    <telerik:GridViewDataColumn DataMemberBinding="{Binding Customer.Add1}" Header="Shipto Address" /> 
                    <telerik:GridViewDataColumn DataMemberBinding="{Binding Customer.City}" Header="Shipto City" /> 
                    <telerik:GridViewDataColumn DataMemberBinding="{Binding Customer.State}" Header="State" /> 
                    <telerik:GridViewDataColumn DataMemberBinding="{Binding Customer.Zip}" Header="Zip" /> 
                    <telerik:GridViewDataColumn DataMemberBinding="{Binding DocumentTemplate.Title}" Header="Template" /> 
                </telerik:RadGridView.Columns> 
            </telerik:RadGridView> 
 
            <!-- This grid is showing the filter icons --> 
            <telerik:RadGridView x:Name="fixedGrid" AutoGenerateColumns="True" Height="300" 
                        ItemsSource="{Binding Data, ElementName=myData}" IsReadOnly="True"
            </telerik:RadGridView> 
             
        </StackPanel> 
 
    </Grid> 
</navigation:Page> 
 



Dan Walton



4 Answers, 1 is accepted

Sort by
0
Accepted
Stefan Dobrev
Telerik team
answered on 16 Apr 2010, 06:12 PM
Hi Daniel Walton,

This is a known issue that we have already fixed internally. The fix will be included in the upcoming service pack release which will be available for download next week.

All the best,
Stefan Dobrev
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0
Gregorio Rojas
Top achievements
Rank 1
answered on 17 Apr 2010, 02:02 AM
Do i have check back for that release? or would i get an email about it?
0
Daniel Walton
Top achievements
Rank 1
answered on 20 Apr 2010, 01:49 PM
Is the 0416 release the service pack you mentioned? Or is there another one coming? I still have this issue in 0416.

Thanks,
Dan Walton
0
Hristo
Telerik team
answered on 21 Apr 2010, 05:30 PM
Hi Daniel Walton,

No, 0416 is not the official service pack. Q1 2010 SP1 is expected in a couple of days.

All the best,
Hristo
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
Tags
GridView
Asked by
Daniel Walton
Top achievements
Rank 1
Answers by
Stefan Dobrev
Telerik team
Gregorio Rojas
Top achievements
Rank 1
Daniel Walton
Top achievements
Rank 1
Hristo
Telerik team
Share this question
or