Version

ReevaluateFiltersOnRecordsAdded Property

Specifies whether to evaluate filter criteria on records that are added via the UI (template add-record) or the data source. Default is resolved to True.
Syntax
'Declaration
 
Public Property ReevaluateFiltersOnRecordsAdded As Nullable(Of Boolean)
public Nullable<bool> ReevaluateFiltersOnRecordsAdded {get; set;}
Remarks

By default the data presenter will evaluate filters on new records that are added via the UI (template add-record) or data source. If the added record does not satisfy the current filter criteria, it is filtered out. To prevent this behavior, you can set ReevaluateFiltersOnRecordsAdded to false. However note that the records will be re-evaluated for filter criteria when the filter criteria itself is modified. Note that this property works independently of ReevaluateFiltersOnDataChange. In other words, if that property resolves to true (which is the default) then the added record will be re-evaluated for filter criteria when the record's cell data changes.

Note that you can use DataRecord's DataRecord.RefreshFilters method to force re-evaluation of filter criteria on a record. You can use this method to apply filter conditions to added records that may have been exempted for filter criteria application as a result of having set ReevaluateFiltersOnRecordsAdded property to false.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also