This question is locked. New answers and comments are not allowed.
Hi Support,
In my grid view I am displaying a large strings in one column, SO when user tries to filter it,Filter Drop down goes out ot the windows frame,
SO I just want to fix filter drop down width, I tried the XAML below , but with no help.
In my grid view I am displaying a large strings in one column, SO when user tries to filter it,Filter Drop down goes out ot the windows frame,
SO I just want to fix filter drop down width, I tried the XAML below , but with no help.
<UserControl.Resources> <Style TargetType="telerik:FilteringControl" x:Key="RowFilteringWidth"> <Setter Property="MaxWidth" Value="220"/> </Style> </UserControl.Resources><telerik:RadGridView Grid.Row="1" CanUserSelect="False" ItemsSource="{Binding DepositCollection}" ScrollViewer.VerticalScrollBarVisibility="Auto" SelectedItem="{Binding SelectedDeposit, Mode=TwoWay}" Visibility="{Binding HasDepositData, Converter={StaticResource booleanToVisibilityConverter}}" DataContext="{StaticResource RowFilteringWidth}" >