Class
PivotItemsFilteringControlViewModel

A view-model used by PivotItemsFilteringControl. This is for internal use only and is not intended to be used directly from your code.

Definition

Namespace:Telerik.Windows.Controls.FieldList.Editing

Assembly:Telerik.Windows.Controls.PivotFieldList.dll

Syntax:

cs-api-definition
public class PivotItemsFilteringControlViewModel : ViewModelBase, INotifyPropertyChanged, IDisposable

Inheritance: objectViewModelBasePivotItemsFilteringControlViewModel

Implements: IDisposableINotifyPropertyChanged

Inherited Members ViewModelBase.VerifyPropertyName(string)ViewModelBase.InvokeOnUIThread(Action)ViewModelBase.Dispose()ViewModelBase.RaisePropertyChanged(string)ViewModelBase.OnPropertyChanged(string)ViewModelBase.OnPropertyChanged<T>(Expression<Func<T>>)ViewModelBase.Dispose(bool)ViewModelBase.PropertyChanged

Properties

IsWorking

Gets a value indicating whether this instance is waiting for an async operation.

Declaration

cs-api-definition
public bool IsWorking { get; }

Property Value

bool

true if this instance is waiting for an async operation; otherwise, false.

OtherConditionViewModel

Gets the other filtering condition.

Declaration

cs-api-definition
public OperatorValueFilterViewModel OtherConditionViewModel { get; }

Property Value

OperatorValueFilterViewModel

The other filtering condition.

SearchText

Gets or sets SearchText and notifies for changes.

Declaration

cs-api-definition
public string SearchText { get; set; }

Property Value

string

Selection

Gets the SelectionCollection used to create a SetCondition for the Filter's Description.

Declaration

cs-api-definition
public SelectionCollection Selection { get; }

Property Value

SelectionCollection

SelectionView

Gets the filtered SelectionCollection view.

Declaration

cs-api-definition
public ICollectionView SelectionView { get; }

Property Value

ICollectionView

Methods

TryExecuteOnDispatcher(Action)

Executed the action on the dispatcher if dispatcher is available.

Declaration

cs-api-definition
protected void TryExecuteOnDispatcher(Action action)

Parameters

action

Action

The action.