Thanks for the reply.
I used your sample Application already and it works perfectly OK.
We have Dynamic Columns, use using Attached Properties, Just to test I changed them to static Columns and still has the issues.
The issue is - If I select FIlter as GreaterThanEQualTo or LessThanEqualTo It always sets the filter to Equal
I just added a filtering event to verify what FIlter Value I am receiving from UI while setting the filter, and it comes up with Equal instead of any of the above.
Do you know any scenarios where Filter sets Equal for GreaterThanEQualTo or LessThanEqualTo
I am suspecting may be My GridStyle has some issues, I am still trying to find my way, but if you could find out this scenario for me that would be good.
Do you know any scenarios where Filter sets Equal for GreaterThanEQualTo or LessThanEqualTo.
I do see GreaterThanEQualTo and LessThanEqualTo correctly though while I am on Numeric Filter.
The issue is caused by the Localization, I want to see the values in different languages, it does shows that correctly, but then I think its not setting up correct value inside the synfusion filter and always ends up with 1st default value of "Equals"
This is how we are trying to do the conversion
<ComboBox x:Name="PART_MenuComboBox2" Grid.Row="4" Margin="0,0,10,10"
ItemsSource="{Binding FilterTypeComboItems, RelativeSource={RelativeSource TemplatedParent}, Converter={StaticResource GetLocalizedString}}"
SelectedItem="{Binding FilterType2, RelativeSource={RelativeSource TemplatedParent}, Mode=TwoWay}" />
Do you have any sample to handle such scenarios?
I am trying to use <ComboBox.ItemTemplate> but not getting the proper values displayed in the combobox.
This is how we are trying to do the conversion
<ComboBox x:Name="PART_MenuComboBox2" Grid.Row="4" Margin="0,0,10,10"
ItemsSource="{Binding FilterTypeComboItems, RelativeSource={RelativeSource TemplatedParent}, Converter={StaticResource GetLocalizedString}}"
SelectedItem="{Binding FilterType2, RelativeSource={RelativeSource TemplatedParent}, Mode=TwoWay}" />
|