Hello,
I have a XamGrid which allow Filtering and I am using FilterRowTop in 3 colomns.
Note that the filter don't work when I use HyperlinkColumn.
Can you see my sample attached to this post please.
Regards.
Hello Anis,
I believe that I have already answer your question here:
http://ko.infragistics.com/community/forums/t/81685.aspx
Ok can you change the attached sample to see please because I tried a gain but I have not succeeded find FilterItemTemplate & FilterEditorTemplate in XamGrid.Columns.
Regards
I see the attached sample. HyperlinkColumn have FilterItemTemplate & FilterEditorTemplate property.
<Ig:XamGrid.Columns>
<Ig:HyperlinkColumn Key="UrlName" HeaderText="Url" Width="2*" AllowToolTips="Always" FilterItemTemplate="{StaticResource ItemFilter}" FilterEditorTemplate="{StaticResource EditorFilter}">
</Ig:HyperlinkColumn>
Thanks
I tried your solution but there is no FilterItemTemplate property and FilterEditorTemplate property in XamGrid.
hope this works:
--- resourcedictionary style ---
<DataTemplate x:Key="ItemFilter"> <TextBlock Text="{Binding Value, Mode=TwoWay}" /> </DataTemplate> <DataTemplate x:Key="EditorFilter"> <TextBox Text="{Binding Value, Mode=TwoWay}" /> </DataTemplate>
--xamgrid--
<hyperlinkcolumn
FilterItemTemplate="{StaticResource ItemFilter}" FilterEditorTemplate="{StaticResource EditorFilter}" />