wpf controls - WPF infragistics unbound column Filter not accessible -


i have use xamgrid (version 12.2) unbound column. managed add unbound column display data not able apply filter. there needed done in xaml have filter accessible unbound column. using filter menu option have excel filter enabled.

enter image description here

following xaml sample

<ig:xamgrid name="xamgrid" autogeneratecolumns="false">             <ig:xamgrid.filteringsettings>                 <ig:filteringsettings allowfiltering="filtermenu"  filteringscope="columnlayout">                 </ig:filteringsettings>             </ig:xamgrid.filteringsettings>             <ig:xamgrid.columns>                 <ig:unboundcolumn key="myfield" headertext="my field"                            valueconverter="{staticresource fieldconverter}"                            valueconverterparameter=""                           isfilterable="true">                     <ig:unboundcolumn.itemtemplate>                         <datatemplate>                             <grid horizontalalignment="stretch">                                 <textblock text="{binding value}" verticalalignment="center"/>                             </grid>                         </datatemplate>                     </ig:unboundcolumn.itemtemplate>                 </ig:unboundcolumn>             </ig:xamgrid.columns>         </ig:xamgrid> 

also raised in infragistics forum : http://www.infragistics.com/community/forums/p/62034/413183.aspx

based on documentation, not providing in build suport filtering. http://help.infragistics.com/help/netadvantage/silverlight/2012.1/clr4.0/html/xamgrid_unbound_column.html

you have implement custom filtering referring below documentation http://help.infragistics.com/help/netadvantage/silverlight/2012.1/clr4.0/html/xamgrid_create_a_custom_filter.html

better post queries in infragistics forum. (refer below) http://www.infragistics.com/community/forums/default.aspx


Comments

Popular posts from this blog

javascript - DIV "hiding" when changing dropdown value -

Does Firefox offer AppleScript support to get URL of windows? -

android - How to install packaged app on Firefox for mobile? -