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
840
WPF DataGrid to Infragistics DataGrid
posted

I am refactoring the default DataGrid to the infragistics one and running into a few issues in regards to binding.  The following appears to work fine but if we apply grouping, we get a binding error. 

BindingExpression path error: 'IsEditable' property not found on 'object' ''CollectionViewGroupInternal' (HashCode=18240208)'

      <DataTemplate x:Key="DataTemplate">
            <Grid>
                <Grid Visibility="{Binding Data.IsEditable, Converter={StaticResource TrueToCollapsedConverter}}">
                    <TextBlock Text="{Binding Data.Name}" />
                </Grid>
                <Grid Visibility="{Binding Data.IsEditable, Converter={StaticResource TrueToVisibleConverter}}">
                    <TextBlock Text="{Binding Data.Name}" FontWeight="Bold" />
                </Grid>
            </Grid>
        </DataTemplate>