RadzenDropDownDataGrid<TValue> Class

A dropdown component that displays items in a DataGrid within the popup instead of a simple list. RadzenDropDownDataGrid combines dropdown selection with grid features like multiple columns, sorting, filtering, and paging. Ideal when dropdown items have multiple properties you want to display in columns. Instead of showing just one property per item, the grid popup can display multiple columns. Perfect for scenarios like selecting products with columns for Name/SKU/Price/Stock, choosing employees with Name/Department/Email columns, or picking customers with Company/Contact/Location columns. Features full DataGrid with columns/sorting/filtering in the dropdown popup, column definition using RadzenDropDownDataGridColumn, built-in column filtering in the grid, multiple selection with checkboxes, optional paging for large datasets, and custom column templates for rich item display. Define columns as child components to specify what data to show in the grid popup.

Inheritance

Object

ComponentBase

RadzenComponent

DataBoundFormComponent<TValue>

DropDownBase<TValue>

RadzenDropDownDataGrid<TValue>

Implements

IComponent

IHandleEvent

IHandleAfterRender

IRadzenFormComponent

Inherited Members

DropDownBase<TValue>.SelectAll

DropDownBase<TValue>.ClearAll

DropDownBase<TValue>.OnParametersSet

DropDownBase<TValue>.GetItemOrValueFromProperty

DropDownBase<TValue>.OpenPopupScript

DropDownBase<TValue>.OpenPopupScriptFromParent

DropDownBase<TValue>.OnFilterKeyPress

DropDownBase<TValue>.OnKeyPress

DropDownBase<TValue>.OnSelectItem

DropDownBase<TValue>.OnInitialized

DropDownBase<TValue>.OnParametersSetAsync

DropDownBase<TValue>.OnChange

DropDownBase<TValue>.SelectItem

DropDownBase<TValue>.OnSelectAllKeyDown

DropDownBase<TValue>.GetValue

DropDownBase<TValue>.VirtualizationOverscanCount

DropDownBase<TValue>.Virtualize

DropDownBase<TValue>.Count

DropDownBase<TValue>.AllowVirtualization

DropDownBase<TValue>.PageSize

DropDownBase<TValue>.HasValue

DropDownBase<TValue>.HeaderTemplate

DropDownBase<TValue>.FilterAsYouType

DropDownBase<TValue>.AllowClear

DropDownBase<TValue>.Multiple

DropDownBase<TValue>.ResetSelectedIndexOnFilter

DropDownBase<TValue>.AllowSelectAll

DropDownBase<TValue>.Template

DropDownBase<TValue>.ValueProperty

DropDownBase<TValue>.DisabledProperty

DropDownBase<TValue>.RemoveChipTitle

DropDownBase<TValue>.ClearAriaLabel

DropDownBase<TValue>.SearchAriaLabel

DropDownBase<TValue>.EmptyAriaLabel

DropDownBase<TValue>.SelectedItemChanged

DropDownBase<TValue>.Data

DropDownBase<TValue>.PopupID

DropDownBase<TValue>.ListId

DropDownBase<TValue>.SearchID

DropDownBase<TValue>.FilterDelay

DropDownBase<TValue>.SelectedItem

DropDownBase<TValue>.Separator

DropDownBase<TValue>.ItemComparer

DropDownBase<TValue>.selectedItems

DropDownBase<TValue>.selectedItem

DropDownBase<TValue>.search

DropDownBase<TValue>.list

DropDownBase<TValue>.selectedIndex

DropDownBase<TValue>.isPopupOpen

DropDownBase<TValue>.PreserveCollectionOnSelection

DataBoundFormComponent<TValue>.GetClassList

DataBoundFormComponent<TValue>.FocusAsync

DataBoundFormComponent<TValue>.OnContextMenu

DataBoundFormComponent<TValue>.TabIndex

DataBoundFormComponent<TValue>.FilterCaseSensitivity

DataBoundFormComponent<TValue>.FilterOperator

DataBoundFormComponent<TValue>.Name

DataBoundFormComponent<TValue>.Placeholder

DataBoundFormComponent<TValue>.Disabled

DataBoundFormComponent<TValue>.Change

DataBoundFormComponent<TValue>.LoadData

DataBoundFormComponent<TValue>.Form

DataBoundFormComponent<TValue>.Value

DataBoundFormComponent<TValue>.ValueChanged

DataBoundFormComponent<TValue>.IsBound

DataBoundFormComponent<TValue>.TextProperty

DataBoundFormComponent<TValue>.Query

DataBoundFormComponent<TValue>.SearchText

DataBoundFormComponent<TValue>.SearchTextChanged

DataBoundFormComponent<TValue>.EditContext

DataBoundFormComponent<TValue>.FieldIdentifier

DataBoundFormComponent<TValue>.ValueExpression

DataBoundFormComponent<TValue>.FormFieldContext

DataBoundFormComponent<TValue>.CurrentPlaceholder

DataBoundFormComponent<TValue>._view

RadzenComponent.OnMouseEnter

RadzenComponent.OnMouseLeave

RadzenComponent.GetCssClass

RadzenComponent.GetId

RadzenComponent.Debounce

RadzenComponent.RaiseContextMenu

RadzenComponent.RaiseMouseEnter

RadzenComponent.AddContextMenu

RadzenComponent.RaiseMouseLeave

RadzenComponent.OnBecameInvisible

RadzenComponent.Attributes

RadzenComponent.Element

RadzenComponent.MouseEnter

RadzenComponent.MouseLeave

RadzenComponent.ContextMenu

RadzenComponent.Culture

RadzenComponent.DefaultCulture

RadzenComponent.Style

RadzenComponent.Visible

RadzenComponent.UniqueID

RadzenComponent.JSRuntime

RadzenComponent.IsJSRuntimeAvailable

RadzenComponent.Reference

RadzenComponent.CurrentStyle

ComponentBase.OnInitializedAsync

ComponentBase.StateHasChanged

ComponentBase.ShouldRender

ComponentBase.OnAfterRender

ComponentBase.InvokeAsync

ComponentBase.DispatchExceptionAsync

ComponentBase.RendererInfo

ComponentBase.Assets

ComponentBase.AssignedRenderMode

Namespace: Radzen.Blazor

Assembly: Radzen.Blazor.dll

Syntax

public class RadzenDropDownDataGrid<TValue> : DropDownBase<TValue>, IComponent, IHandleEvent, IHandleAfterRender, IRadzenFormComponent

Type Parameters

Name Description
TValueThe type of the selected value. Can be a single value or IEnumerable for multiple selection.

Examples

Basic dropdown with grid:

<RadzenDropDownDataGrid @bind-Value=@selectedCustomerId TValue="int" 
                         Data=@customers ValueProperty="CustomerId">
    <Columns>
        <RadzenDropDownDataGridColumn Property="CompanyName" Title="Company" />
        <RadzenDropDownDataGridColumn Property="ContactName" Title="Contact" />
        <RadzenDropDownDataGridColumn Property="City" Title="City" />
    </Columns>
</RadzenDropDownDataGrid>

Multiple selection with filtering:

<RadzenDropDownDataGrid @bind-Value=@selectedIds TValue="IEnumerable<int>" 
                         Multiple="true" AllowFiltering="true" Data=@products>
    <Columns>
        <RadzenDropDownDataGridColumn Property="Name" Title="Product" />
        <RadzenDropDownDataGridColumn Property="Price" Title="Price" FormatString="{0:C}" />
    </Columns>
</RadzenDropDownDataGrid>

Constructors

RadzenDropDownDataGrid<TValue>link

A dropdown component that displays items in a DataGrid within the popup instead of a simple list. RadzenDropDownDataGrid combines dropdown selection with grid features like multiple columns, sorting, filtering, and paging. Ideal when dropdown items have multiple properties you want to display in columns. Instead of showing just one property per item, the grid popup can display multiple columns. Perfect for scenarios like selecting products with columns for Name/SKU/Price/Stock, choosing employees with Name/Department/Email columns, or picking customers with Company/Contact/Location columns. Features full DataGrid with columns/sorting/filtering in the dropdown popup, column definition using RadzenDropDownDataGridColumn, built-in column filtering in the grid, multiple selection with checkboxes, optional paging for large datasets, and custom column templates for rich item display. Define columns as child components to specify what data to show in the grid popup.

Declaration
public RadzenDropDownDataGrid<TValue>()

Fields

popuplink

Gets popup element reference.

Declaration
protected ElementReference popup

Properties

Addlink

Gets or sets the action to be executed when the Add button is clicked.

Declaration
public EventCallback<MouseEventArgs> Add { get; set; }
Property Value
Type Description
EventCallback<MouseEventArgs>Gets or sets the action to be executed when the Add button is clicked.

AddAriaLabellink

Gets or sets the add button aria-label attribute.

Declaration
public string AddAriaLabel { get; set; }
Property Value
Type Description
stringGets or sets the add button aria-label attribute.

AllowColumnPickinglink

Gets or sets a value indicating whether column picking is allowed.

Declaration
public bool AllowColumnPicking { get; set; }
Property Value
Type Description
boolGets or sets a value indicating whether column picking is allowed.

AllowColumnReorderlink

Gets or sets a value indicating whether column reorder is allowed.

Declaration
public bool AllowColumnReorder { get; set; }
Property Value
Type Description
boolGets or sets a value indicating whether column reorder is allowed.

AllowColumnResizelink

Gets or sets a value indicating whether column resizing is allowed.

Declaration
public bool AllowColumnResize { get; set; }
Property Value
Type Description
boolGets or sets a value indicating whether column resizing is allowed.

AllowFilteringlink

Gets or sets a value indicating whether filtering is allowed.

Declaration
public bool AllowFiltering { get; set; }
Property Value
Type Description
boolGets or sets a value indicating whether filtering is allowed.

AllowFilteringByAllStringColumnslink

Gets or sets a value indicating whether filtering by all string columns is allowed.

Declaration
public bool AllowFilteringByAllStringColumns { get; set; }
Property Value
Type Description
boolGets or sets a value indicating whether filtering by all string columns is allowed.

AllowFilteringByWordlink

Gets or sets a value indicating whether filtering by each entered word in the search term, sperated by a space, is allowed.

Declaration
public bool AllowFilteringByWord { get; set; }
Property Value
Type Description
boolGets or sets a value indicating whether filtering by each entered word in the search term, sperated by a space, is allowed.

AllowFilteringByWordCountlink

Gets or sets the AllowFilteringByWord max count.

Declaration
public int AllowFilteringByWordCount { get; set; }
Property Value
Type Description
intGets or sets the AllowFilteringByWord max count.

AllowRowSelectOnRowClicklink

Gets or sets a value indicating whether DataGrid row can be selected on row click.

Declaration
public bool AllowRowSelectOnRowClick { get; set; }
Property Value
Type Description
boolGets or sets a value indicating whether DataGrid row can be selected on row click.

AllowSortinglink

Gets or sets a value indicating whether sorting is allowed.

Declaration
public bool AllowSorting { get; set; }
Property Value
Type Description
boolGets or sets a value indicating whether sorting is allowed.

CellRenderlink

Gets or sets the cell render callback. Use it to set cell attributes.

Declaration
public Action<DataGridCellRenderEventArgs<object>> CellRender { get; set; }
Property Value
Type Description
Action<DataGridCellRenderEventArgs<object>>Gets or sets the cell render callback. Use it to set cell attributes.

Chipslink

Gets or sets a value indicating whether the selected items will be displayed as chips. Set to false by default. Requires Multiple to be set to true.

Declaration
public bool Chips { get; set; }
Property Value
Type Description
boolGets or sets a value indicating whether the selected items will be displayed as chips. Set to false by default. Requires Multiple to be set to true.

ColumnReorderedlink

Gets or sets the column reordered callback.

Declaration
public EventCallback<DataGridColumnReorderedEventArgs<object>> ColumnReordered { get; set; }
Property Value
Type Description
EventCallback<DataGridColumnReorderedEventArgs<object>>Gets or sets the column reordered callback.

ColumnReorderinglink

Gets or sets the column reordering callback.

Declaration
public EventCallback<DataGridColumnReorderingEventArgs<object>> ColumnReordering { get; set; }
Property Value
Type Description
EventCallback<DataGridColumnReorderingEventArgs<object>>Gets or sets the column reordering callback.

ColumnResizedlink

Gets or sets the column resized callback.

Declaration
public EventCallback<DataGridColumnResizedEventArgs<object>> ColumnResized { get; set; }
Property Value
Type Description
EventCallback<DataGridColumnResizedEventArgs<object>>Gets or sets the column resized callback.

ColumnWidthlink

Gets or sets the width of all columns.

Declaration
public string ColumnWidth { get; set; }
Property Value
Type Description
stringGets or sets the width of all columns.

Columnslink

Gets or sets the columns.

Declaration
public RenderFragment Columns { get; set; }
Property Value
Type Description
RenderFragmentGets or sets the columns.

ContextMenuDataGridlink

Gets or sets the callback invoked when the user right-clicks the component. Commonly used with ContextMenuService to display context menus. Receives mouse event arguments containing click position.

Declaration
public EventCallback<MouseEventArgs> ContextMenuDataGrid { get; set; }
Property Value
Type Description
EventCallback<MouseEventArgs>Gets or sets the callback invoked when the user right-clicks the component. Commonly used with ContextMenuService to display context menus. Receives mouse event arguments containing click position.

DataGridlink

Handles the reference to the DataGrid component.

Declaration
public RadzenDataGrid<object> DataGrid { get; }
Property Value
Type Description
RadzenDataGrid<object>Handles the reference to the DataGrid component.

Densitylink

Gets or sets a value indicating DataGrid density.

Declaration
public Density Density { get; set; }
Property Value
Type Description
DensityGets or sets a value indicating DataGrid density.

EmptyTemplatelink

Gets or sets the empty template shown when Data is empty collection.

Declaration
public RenderFragment EmptyTemplate { get; set; }
Property Value
Type Description
RenderFragmentGets or sets the empty template shown when Data is empty collection.

EmptyTextlink

Gets or sets the empty text.

Declaration
public string EmptyText { get; set; }
Property Value
Type Description
stringGets or sets the empty text.

FirstPageAriaLabellink

Gets or sets the pager's first page button's aria-label attribute.

Declaration
public string FirstPageAriaLabel { get; set; }
Property Value
Type Description
stringGets or sets the pager's first page button's aria-label attribute.

FirstPageTitlelink

Gets or sets the pager's first page button's title attribute.

Declaration
public string FirstPageTitle { get; set; }
Property Value
Type Description
stringGets or sets the pager's first page button's title attribute.

FocusFilterOnPopuplink

Gets or sets whether popup automatically focuses on filter input.

Declaration
public bool FocusFilterOnPopup { get; set; }
Property Value
Type Description
boolGets or sets whether popup automatically focuses on filter input.

FooterTemplatelink

Gets or sets the footer template.

Declaration
public RenderFragment FooterTemplate { get; set; }
Property Value
Type Description
RenderFragmentGets or sets the footer template.

GridLineslink

Gets or sets the grid lines.

Declaration
public DataGridGridLines GridLines { get; set; }
Property Value
Type Description
DataGridGridLinesGets or sets the grid lines.

InputAttributeslink

Specifies additional custom attributes that will be rendered by the input.

Declaration
public IReadOnlyDictionary<string, object> InputAttributes { get; set; }
Property Value
Type Description
IReadOnlyDictionary<string, object>Specifies additional custom attributes that will be rendered by the input.

IsLoadinglink

Gets or sets a value indicating whether this instance loading indicator is shown.

Declaration
public bool IsLoading { get; set; }
Property Value
Type Description
boolGets or sets a value indicating whether this instance loading indicator is shown.

Itemslink

Gets the items.

Declaration
protected IEnumerable<object> Items { get; }
Property Value
Type Description
IEnumerable<object>Gets the items.

LastPageAriaLabellink

Gets or sets the pager's last page button's aria-label attribute.

Declaration
public string LastPageAriaLabel { get; set; }
Property Value
Type Description
stringGets or sets the pager's last page button's aria-label attribute.

LastPageTitlelink

Gets or sets the pager's last page button's title attribute.

Declaration
public string LastPageTitle { get; set; }
Property Value
Type Description
stringGets or sets the pager's last page button's title attribute.

LoadChildDatalink

Gets or sets the load child data callback.

Declaration
public EventCallback<DataGridLoadChildDataEventArgs<object>> LoadChildData { get; set; }
Property Value
Type Description
EventCallback<DataGridLoadChildDataEventArgs<object>>Gets or sets the load child data callback.

MaxSelectedLabelslink

Gets or sets the number of maximum selected labels.

Declaration
public int MaxSelectedLabels { get; set; }
Property Value
Type Description
intGets or sets the number of maximum selected labels.

NextPageAriaLabellink

Gets or sets the pager's next page button's aria-label attribute.

Declaration
public string NextPageAriaLabel { get; set; }
Property Value
Type Description
stringGets or sets the pager's next page button's aria-label attribute.

NextPageTitlelink

Gets or sets the pager's next page button's title attribute.

Declaration
public string NextPageTitle { get; set; }
Property Value
Type Description
stringGets or sets the pager's next page button's title attribute.

OpenOnFocuslink

Gets or sets a value indicating whether popup should open on focus. Set to false by default.

Declaration
public bool OpenOnFocus { get; set; }
Property Value
Type Description
boolGets or sets a value indicating whether popup should open on focus. Set to false by default.

OpenPopupKeylink

Gets or sets the keyboard key that triggers opening the popup when OpenOnFocus is enabled. Default is "Enter".

Declaration
public string OpenPopupKey { get; set; }
Property Value
Type Description
stringGets or sets the keyboard key that triggers opening the popup when OpenOnFocus is enabled. Default is "Enter".

PageAriaLabelFormatlink

Gets or sets the pager's numeric page number buttons' aria-label attributes.

Declaration
public string PageAriaLabelFormat { get; set; }
Property Value
Type Description
stringGets or sets the pager's numeric page number buttons' aria-label attributes.

PageNumbersCountlink

Gets or sets the page numbers count.

Declaration
public int PageNumbersCount { get; set; }
Property Value
Type Description
intGets or sets the page numbers count.

PageSizeOptionslink

Gets or sets the page size options.

Declaration
public IEnumerable<int> PageSizeOptions { get; set; }
Property Value
Type Description
IEnumerable<int>Gets or sets the page size options.

PageTitleFormatlink

Gets or sets the pager's numeric page number buttons' title attributes.

Declaration
public string PageTitleFormat { get; set; }
Property Value
Type Description
stringGets or sets the pager's numeric page number buttons' title attributes.

PagerAlwaysVisiblelink

Gets or sets a value indicating whether pager is visible even when not enough data for paging.

Declaration
public bool PagerAlwaysVisible { get; set; }
Property Value
Type Description
boolGets or sets a value indicating whether pager is visible even when not enough data for paging.

PagerHorizontalAlignlink

Gets or sets the horizontal align.

Declaration
public HorizontalAlign PagerHorizontalAlign { get; set; }
Property Value
Type Description
HorizontalAlignGets or sets the horizontal align.

PagingSummaryFormatlink

Gets or sets the pager summary format.

Declaration
public string PagingSummaryFormat { get; set; }
Property Value
Type Description
stringGets or sets the pager summary format.

PopupStylelink

Gets or sets the Popup style.

Declaration
public string PopupStyle { get; set; }
Property Value
Type Description
stringGets or sets the Popup style.

PreserveRowSelectionOnPaginglink

Gets or sets preserving the selected row index on pageing.

Declaration
public bool PreserveRowSelectionOnPaging { get; set; }
Property Value
Type Description
boolGets or sets preserving the selected row index on pageing.

PrevPageAriaLabellink

Gets or sets the pager's previous page button's aria-label attribute.

Declaration
public string PrevPageAriaLabel { get; set; }
Property Value
Type Description
stringGets or sets the pager's previous page button's aria-label attribute.

PrevPageTitlelink

Gets or sets the pager's previous page button's title attribute.

Declaration
public string PrevPageTitle { get; set; }
Property Value
Type Description
stringGets or sets the pager's previous page button's title attribute.

Responsivelink

Gets or sets a value indicating whether this RadzenDropDownDataGrid<T> is responsive.

Declaration
public bool Responsive { get; set; }
Property Value
Type Description
boolGets or sets a value indicating whether this RadzenDropDownDataGrid<T> is responsive.

RowRenderlink

Gets or sets the row render callback. Use it to set row attributes.

Declaration
public Action<RowRenderEventArgs<object>> RowRender { get; set; }
Property Value
Type Description
Action<RowRenderEventArgs<object>>Gets or sets the row render callback. Use it to set row attributes.

SearchTextPlaceholderlink

Gets or sets the search input placeholder text.

Declaration
public string SearchTextPlaceholder { get; set; }
Property Value
Type Description
stringGets or sets the search input placeholder text.

SelectedItemsTextlink

Gets or sets the selected items text.

Declaration
public string SelectedItemsText { get; set; }
Property Value
Type Description
stringGets or sets the selected items text.

SelectedValuelink

Gets or sets the selected value.

Declaration
public object SelectedValue { get; set; }
Property Value
Type Description
objectGets or sets the selected value.

ShowAddlink

Gets or sets a value indicating whether the create button is shown.

Declaration
public bool ShowAdd { get; set; }
Property Value
Type Description
boolGets or sets a value indicating whether the create button is shown.

ShowPagingSummarylink

Gets or sets the pager summary visibility.

Declaration
public bool ShowPagingSummary { get; set; }
Property Value
Type Description
boolGets or sets the pager summary visibility.

ShowSearchlink

Gets or sets a value indicating whether search button is shown.

Declaration
public bool ShowSearch { get; set; }
Property Value
Type Description
boolGets or sets a value indicating whether search button is shown.

ValueTemplatelink

Gets or sets the value template.

Declaration
public RenderFragment<object> ValueTemplate { get; set; }
Property Value
Type Description
RenderFragment<object>Gets or sets the value template.

Viewlink

Gets the view. The data with sorting, filtering and paging applied.

Declaration
public Collections.IEnumerable View { get; }
Property Value
Type Description
Collections.IEnumerableGets the view. The data with sorting, filtering and paging applied.

Methods

BuildRenderTreelink

Declaration
protected override void BuildRenderTree(Rendering.RenderTreeBuilder __builder)
Parameters
Type Name Description
Rendering.RenderTreeBuilder __builder

CloseAndFocuslink

Closes the dropdown popup and sets focus to the input element.

Declaration
public Task CloseAndFocus()
Returns
Type Description
TaskA task that represents the asynchronous operation.

Disposelink

Declaration
public override void Dispose()

GetComponentCssClasslink

Declaration
protected override string GetComponentCssClass()
Returns
Type Description
string

HandleKeyPresslink

Declaration
protected override Task HandleKeyPress(KeyboardEventArgs args, bool isFilter, bool? shouldSelectOnChange)
Parameters
Type Name Description
KeyboardEventArgs args
bool isFilter
bool? shouldSelectOnChange
Returns
Type Description
Task

OnAddClicklink

Handles the click event.

Declaration
public Task OnAddClick(MouseEventArgs args)
Parameters
Type Name Description
MouseEventArgs args The MouseEventArgs instance containing the event data.
Returns
Type Description
Task

OnAfterRenderAsynclink

Called when [after render asynchronous].

Declaration
protected override Task OnAfterRenderAsync(bool firstRender)
Parameters
Type Name Description
bool firstRender if set to true [first render].
Returns
Type Description
TaskTask.

OnCellRenderlink

Executes CellRender callback.

Declaration
protected virtual void OnCellRender(DataGridCellRenderEventArgs<object> args)
Parameters
Type Name Description
DataGridCellRenderEventArgs<object> args

OnChipRemovelink

Event handler for when an item is unselected by clicking a chip

Declaration
protected virtual Task OnChipRemove(object item)
Parameters
Type Name Description
object item The item that is to be removed
Returns
Type Description
Task

OnCloselink

Called when popup is closed.

Declaration
public Task OnClose()
Returns
Type Description
Task

OnDataChangedlink

Called when data is changed.

Declaration
protected override Task OnDataChanged()
Returns
Type Description
Task

OnFilterlink

Declaration
protected override Task OnFilter(ChangeEventArgs args)
Parameters
Type Name Description
ChangeEventArgs args
Returns
Type Description
Task

OnFilterInputlink

Declaration
protected override Task OnFilterInput(ChangeEventArgs args)
Parameters
Type Name Description
ChangeEventArgs args
Returns
Type Description
Task

OnRowRenderlink

Executes RowRender callback.

Declaration
protected virtual void OnRowRender(RowRenderEventArgs<object> args)
Parameters
Type Name Description
RowRenderEventArgs<object> args

OpenPopuplink

Opens the popup.

Declaration
protected override Task OpenPopup(string key, bool isFilter, bool isFromClick)
Parameters
Type Name Description
string key The key.
bool isFilter if set to true [is filter].
bool isFromClick if set to true [is from click].
Returns
Type Description
Task

Reloadlink

Reloads this instance.

Declaration
public Task Reload()
Returns
Type Description
Task

Resetlink

Resets component and deselects row

Declaration
public Task Reset()
Returns
Type Description
Task

SelectItemFromValuelink

Selects the item from value.

Declaration
protected override void SelectItemFromValue(object value)
Parameters
Type Name Description
object value The value.

SetParametersAsynclink

Set parameters as an asynchronous operation.

Declaration
public override Task SetParametersAsync(ParameterView parameters)
Parameters
Type Name Description
ParameterView parameters The parameters.
Returns
Type Description
TaskA Task representing the asynchronous operation.
An error has occurred. This app may no longer respond until reloaded. Reload 🗙