I am trying to add a new row with a filter predicate. I am running into the issue when I run a filter predicate first, it won't let me add a new row because the ID I set isn't included in the filter. Is there a way to set that ID value when trying to add a new row.
For instance:
sfDataGrid1.Columns["taskID"].FilterPredicates.Add(new FilterPredicate() { FilterType = FilterType.Equals, FilterValue = taskID });
Now when I have the Add new Row, it won't work because the taskID is set to null when you create a new entry.