Class DataGridSearchSettings
A class that contains information about the settings related to a search operation and the views related to it.
Inheritance
Namespace: Telerik.Maui.Controls.DataGrid
Assembly: Telerik.Maui.Controls.dll
Syntax
public class DataGridSearchSettings : BindableObject
Constructors
DataGridSearchSettings()
Initializes a new instance of the class.
Declaration
public DataGridSearchSettings()
Fields
ApplyFilterProperty
Identifies the ApplyFilter property.
Declaration
public static readonly BindableProperty ApplyFilterProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
CaseSensitiveProperty
Identifies the CaseSensitive property.
Declaration
public static readonly BindableProperty CaseSensitiveProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
CloseSearchPanelCommandProperty
Identifies the CloseSearchPanelCommand property.
Declaration
public static readonly BindableProperty CloseSearchPanelCommandProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
DataGridProperty
Identifies the DataGrid property.
Declaration
public static readonly BindableProperty DataGridProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
IntermediateSearchTextProperty
Identifies the IntermediateSearchText property.
Declaration
public static readonly BindableProperty IntermediateSearchTextProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
IsCloseSearchPanelButtonVisibleProperty
Identifies the IsCloseSearchPanelButtonVisible property.
Declaration
public static readonly BindableProperty IsCloseSearchPanelButtonVisibleProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
ProvideSearchMatchesActionProperty
Identifies the ProvideSearchMatchesAction property.
Declaration
public static readonly BindableProperty ProvideSearchMatchesActionProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
ResultsSummaryProperty
Identifies the ResultsSummary property.
Declaration
public static readonly BindableProperty ResultsSummaryProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
SearchEntryCompletedCommandProperty
Identifies the SearchEntryCompletedCommand property.
Declaration
public static readonly BindableProperty SearchEntryCompletedCommandProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
SearchMatchesCountProperty
Identifies the SearchMatchesCount property.
Declaration
public static readonly BindableProperty SearchMatchesCountProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
SearchPanelVisibilityModeProperty
Identifies the SearchPanelVisibilityMode property.
Declaration
public static readonly BindableProperty SearchPanelVisibilityModeProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
SearchTextProperty
Identifies the SearchText property.
Declaration
public static readonly BindableProperty SearchTextProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
SearchTriggerProperty
Identifies the SearchTrigger property.
Declaration
public static readonly BindableProperty SearchTriggerProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
TextMatchModeProperty
Identifies the TextMatchMode property.
Declaration
public static readonly BindableProperty TextMatchModeProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
Properties
ApplyFilter
Gets or sets a value that determines whether business items that do not satisfy the search criteria should be filtered.
Declaration
public bool ApplyFilter { get; set; }
Property Value
System.Boolean
|
CaseSensitive
Gets or sets a value indicating whether string comparison should be case sensitive.
Declaration
public bool CaseSensitive { get; set; }
Property Value
System.Boolean
|
CloseSearchPanelCommand
Gets or sets the command that is executed when pressing the close button in the DataGridSearchPanel.
Declaration
public ICommand CloseSearchPanelCommand { get; set; }
Property Value
System.Windows.Input.ICommand
|
DataGrid
Gets the corresponding RadDataGrid.
Declaration
public RadDataGrid DataGrid { get; }
Property Value
RadDataGrid
|
IntermediateSearchText
Gets or sets the text of the search entry. Change of this value will not necessarily trigger a search, i.e. it will not necessarily change the SearchText property. The SearchText property is updated in accordance to the SearchTrigger property.
Declaration
public string IntermediateSearchText { get; set; }
Property Value
System.String
|
IsCloseSearchPanelButtonVisible
Gets a value indicating whether the X button that closes the search panel should be visible. The value of this property is determined by the SearchPanelVisibilityMode property.
Declaration
public bool IsCloseSearchPanelButtonVisible { get; }
Property Value
System.Boolean
|
ProvideSearchMatchesAction
Gets or sets the custom action that is invoked when determining the search matches for a an item. Use this action when you need to specify search matches based on custom logic. See also ProvideSearchMatches(DataGridSearchProbe) which allows to invoke the base logic.
Declaration
public Action<DataGridSearchProbe> ProvideSearchMatchesAction { get; set; }
Property Value
System.Action<DataGridSearchProbe>
|
ResultsSummary
Gets a summary of the search results, like the number of search matches. You can override the GetResultsSummary() method when you need to change its value.
Declaration
public string ResultsSummary { get; }
Property Value
System.String
|
SearchEntryCompletedCommand
Gets the command that is executed when the
Declaration
public ICommand SearchEntryCompletedCommand { get; }
Property Value
System.Windows.Input.ICommand
|
SearchMatchesCount
Gets the number of search matches.
Declaration
public int SearchMatchesCount { get; }
Property Value
System.Int32
|
SearchPanelVisibilityMode
Gets or sets a value indicating the user experience with the visibility of the DataGridSearchPanel and its close button.
Declaration
public DataGridSearchPanelVisibilityMode SearchPanelVisibilityMode { get; set; }
Property Value
DataGridSearchPanelVisibilityMode
|
SearchText
Gets or sets the search text. Before a search is started, this value is trimmed, and the SearchStarting event is raised and it allows to change the effective search text that will be used for searching.
Declaration
public string SearchText { get; set; }
Property Value
System.String
|
SearchTrigger
Gets or sets a value indicating when a search operation should be performed while the end user is typing in the search entry of the DataGridSearchPanel is raised.
Declaration
public DataGridSearchTrigger SearchTrigger { get; set; }
Property Value
DataGridSearchTrigger
|
TextMatchMode
Gets or sets a value indicating how a search term should be searched for within a text element.
Declaration
public DataGridSearchTextMatchMode TextMatchMode { get; set; }
Property Value
DataGridSearchTextMatchMode
|
Methods
GetResultsSummary()
Invoked when updating the ResultsSummary property.
Declaration
protected virtual string GetResultsSummary()
Returns
System.String
Summarized information about the search results in the current search operation. |
OnSearchResultsChanged(IEnumerable<DataGridSearchResultsItem>)
Invoked when the search results change. You can override this method to add custom logic by either adding or removing search matches. You can also call this method to provide custom search matches.
Declaration
public virtual void OnSearchResultsChanged(IEnumerable<DataGridSearchResultsItem> searchResults)
Parameters
System.Collections.Generic.IEnumerable<DataGridSearchResultsItem>
searchResults
A collection of search results. |
ProvideSearchMatches(DataGridSearchProbe)
Invoked when probing for search matches. You can override this method and the Matches collection to add custom logic by either adding or removing search matches.
Declaration
protected virtual void ProvideSearchMatches(DataGridSearchProbe probe)
Parameters
DataGridSearchProbe
probe
An entity that contains information about the item, such as text of the item, the effective search text, and more. |
Events
SearchStarting
An event that is raised before searching starts. The effective search text can be changed and searching can be cancelled from the arguments.
Declaration
public event EventHandler<DataGridSearchStartingEventArgs> SearchStarting
Event Type
System.EventHandler<DataGridSearchStartingEventArgs>
|