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

Filter dialog box not expanding

3 Answers 34 Views
GridView
This is a migrated thread and some comments may be shown as answers.
Michael MSTG
Top achievements
Rank 1
Michael MSTG asked on 09 Jan 2014, 05:15 PM
We recently upgraded to 2013.3.1204.1050 and we noticed that the filter dialog box is cut off and not expanding as before.  What would be causing this?

3 Answers, 1 is accepted

Sort by
0
Yoan
Telerik team
answered on 09 Jan 2014, 05:49 PM
Hello Michael,

Unfortunately with the supplied information I cannot figure out what is going on. Could you please try to isolate the problem you have in a demo project which we could debug locally? You can check this blog post for a reference, which shows you how to isolate a problem in a sample project. 

However, as a workaround you can set a style targeting GridView's FilteringControl:
<Style TargetType="telerik:FilteringControl">
 <Setter Property="Width" Value="300"/>
</Style>

Thank you in advance!


Regards,
Yoan
Telerik
TRY TELERIK'S NEWEST PRODUCT - EQATEC APPLICATION ANALYTICS for SILVERLIGHT.
Learn what features your users use (or don't use) in your application. Know your audience. Target it better. Develop wisely.
Sign up for Free application insights >>
0
Michael MSTG
Top achievements
Rank 1
answered on 09 Jan 2014, 08:08 PM
I cannot do a sample project as it will take far too much to emmulate our enviornment. 

I'm not exactly sure what it is you are looking for.  Here is an example of a RadGridView in action. 
<telerik:RadGridView x:Name="dgViewOrders"
                     Height="auto"
                     AutoGenerateColumns="False"
                     ItemsSource="{Binding Data, ElementName=ddsTrips}"
                     IsReadOnly="True"
                     SelectionMode="Single"
                     ShowGroupPanel="False"
                     RowIndicatorVisibility="Collapsed"
                     FrozenColumnCount="2">
    <telerik:RadGridView.Columns>
        <core:TelerikGridRowSelectColumn />
        <telerik:GridViewDataColumn DataMemberBinding="{Binding OrderId}"
                                    ShowDistinctFilters="False" />
        <telerik:GridViewDataColumn DataMemberBinding="{Binding CalculatedOrderAmountDisplay, StringFormat='n2'}"
                                    TextAlignment="Right"
                                    ShowDistinctFilters="False"
                                    SortMemberPath="InvoiceOrderAmount.InvoiceOrderCalculatedAmount" />
        <telerik:GridViewDataColumn DataMemberBinding="{Binding InvoiceOrderAdjustmentAmount, StringFormat='n2'}"
                                    TextAlignment="Right"
                                    ShowDistinctFilters="False" />
        <telerik:GridViewDataColumn DataMemberBinding="{Binding InvoiceAdjustmentReasonDescription}"
                                    ShowDistinctFilters="False"
                                    SortMemberPath="InvoiceAdjustmentReason.DescriptionShort" />
        <telerik:GridViewDataColumn DataMemberBinding="{Binding InvoiceTotalInvoiceOrderAmount, StringFormat='n2'}"
                                    TextAlignment="Right"
                                    ShowDistinctFilters="False"
                                    SortMemberPath="InvoiceOrderAmount.InvoiceOrderNetAmount" />
        <telerik:GridViewDataColumn DataMemberBinding="{Binding IsBilled, Converter={StaticResource BooleanToStringConverter}}"
                                    CellTemplate="{StaticResource IsBilledColumn}"
                                    ShowFieldFilters="False" />
        <telerik:GridViewDataColumn DataMemberBinding="{Binding OrderTripLocationDescription}"
                                    ShowDistinctFilters="False"
                                    SortMemberPath="OrderFulfillmentBaseList.ServiceLocationDescriptionShort" />
        <telerik:GridViewDataColumn DataMemberBinding="{Binding TripCustomerDescription}"
                                    ShowDistinctFilters="False"
                                    SortMemberPath="OrderFulfillmentBaseList.TripCustomerDescriptionShort" />
        <telerik:GridViewDataColumn DataMemberBinding="{Binding TripCustomerApprovalCenterDescription}"
                                    ShowDistinctFilters="False"
                                    SortMemberPath="OrderFulfillmentBaseList.TripCustomerApprovalCenterDescriptionShort" />
        <telerik:GridViewDataColumn DataMemberBinding="{Binding OrderCategoryDescription}"
                                    ShowDistinctFilters="False"
                                    SortMemberPath="OrderFulfillmentBaseList.OrderCategoryDescriptionShort" />
        <telerik:GridViewDataColumn DataMemberBinding="{Binding OrderSubcategoryDescription}"
                                    ShowDistinctFilters="False"
                                    SortMemberPath="OrderFulfillmentBaseList.OrderSubcategoryDescriptionShort" />
    </telerik:RadGridView.Columns>
</telerik:RadGridView>


Every grid view we have has the exact same problem that was not present under the previous version we were working with (2012.2.0912.1050).  We did nothing to styles or to the XAML, only recompiled under the newest version.
0
Yoan
Telerik team
answered on 14 Jan 2014, 01:49 PM
Hi Michael,

As it turns out, I cannot identify the cause of the problem without being able to reproduce it locally. I have prepared a sample project using 2013.3.1204 of RadControls for Silverlight. It is based on the provided code snippet as well. Please, feel free to modify it in order to reproduce the issue and resend it back to me.


Regards,
Yoan
Telerik
TRY TELERIK'S NEWEST PRODUCT - EQATEC APPLICATION ANALYTICS for SILVERLIGHT.
Learn what features your users use (or don't use) in your application. Know your audience. Target it better. Develop wisely.
Sign up for Free application insights >>
Tags
GridView
Asked by
Michael MSTG
Top achievements
Rank 1
Answers by
Yoan
Telerik team
Michael MSTG
Top achievements
Rank 1
Share this question
or