Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
105
9.1 Express grid filtering problem
posted

I have the NetAdvantage for WPF Express 2009 Vol 1 with Hotfix and I am trying to get grid filtering to work.  Here is my xaml code:

        <igDP:XamDataGrid
            x:Name="XamDataGrid1"
            BindToSampleData="True"
            Margin="24,24,103,232">

            <igDP:XamDataGrid.FieldSettings>
                <igDP:FieldSettings
                    AllowRecordFiltering="True" />
            </igDP:XamDataGrid.FieldSettings>
        </igDP:XamDataGrid>

If I type in Adm in the Department filter, none of the other rows get removed.  I did notice this binding error in the output window, after the window loads:

System.Windows.Data Error: 39 : BindingExpression path error: 'RecordFilters' property not found on 'object' ''FieldLayout' (HashCode=30607723)'. BindingExpression:Path=RecordFilters.Version; DataItem='FieldLayout' (HashCode=30607723); target element is 'PropertyValueTracker' (HashCode=35170261); target property is 'Target' (type 'Object')

Is my setup wrong?