Class AppendProvider
Represents auto-complete provider that handles the Append behavior.
Inherited Members
Namespace: Telerik.Windows.Controls.MultiColumnComboBox
Assembly: Telerik.Windows.Controls.GridView.dll
Syntax
public class AppendProvider : SuggestProvider, INotifyPropertyChanged
Constructors
AppendProvider(QueryableCollectionView)
Initializes a new instance of the AppendProvider class.
Declaration
public AppendProvider(QueryableCollectionView collectionView)
Parameters
QueryableCollectionView
collectionView
|
AppendProvider(QueryableCollectionView, SearchStateManager)
Initializes a new instance of the AppendProvider class.
Declaration
public AppendProvider(QueryableCollectionView collectionView, SearchStateManager searchStateManager)
Parameters
QueryableCollectionView
collectionView
|
SearchStateManager
searchStateManager
|
Properties
AutoCompleteMode
Gets the auto-complete mode.
Declaration
protected override SearchAutoCompleteMode AutoCompleteMode { get; }
Property Value
SearchAutoCompleteMode
|
Overrides
Methods
GetCurrentItem()
Returns the current item.
Declaration
protected override object GetCurrentItem()
Returns
System.Object
|
Overrides
HandleSearchTextChanged(String)
Updates the search logic with the new search text value.
Declaration
protected override void HandleSearchTextChanged(string newSearchText)
Parameters
System.String
newSearchText
|
Overrides
InitializeCollectionView(QueryableCollectionView)
Initializes the associated collection view instance.
Declaration
protected override void InitializeCollectionView(QueryableCollectionView collectionView)
Parameters
QueryableCollectionView
collectionView
|
Overrides
MoveCurrentToFirst()
Moves CollectionView.CurrentItem to the first item.
Declaration
public override void MoveCurrentToFirst()
Overrides
MoveCurrentToLast()
Moves CollectionView.CurrentItem to the last item.
Declaration
public override void MoveCurrentToLast()
Overrides
MoveCurrentToNext()
Moves CollectionView.CurrentItem to the next available.
Declaration
public override void MoveCurrentToNext()
Overrides
MoveCurrentToPrevious()
Moves CollectionView.CurrentItem to the previous available.
Declaration
public override void MoveCurrentToPrevious()
Overrides
SetCurrentItem(Object)
Sets the current item.
Declaration
protected override void SetCurrentItem(object item)
Parameters
System.Object
item
|