In my XAML I'm trying to bind AllowEdit of my XamDataGrid to a property
<igDP:XamDataGrid.FieldSettings>
<igDP:FieldSettings AllowEdit="{Binding Path=DataItem.Approved}"/>
</igDP:XamDataGrid.FieldSettings>
But it doesn't work. All other bindings work fine. Any ideas? I'm new to WPF so any help would be appreciated
Perhaps you're binding to
ObservableCollection? If that's the case, you can't edit your items. You can try bind toBindingListinstead.