RadzenDataGridColumn<TItem> Class

Defines a column in a RadzenDataGrid, specifying how data is displayed, sorted, filtered, and edited. RadzenDataGridColumn supports data binding via Property, custom templates, formatting, sorting, filtering, grouping, aggregation, and inline editing. Must be placed inside a RadzenDataGrid<T> within the Columns template. Each column represents one field or computed value from the data source. Features data binding using Property to bind to a data field or Template for custom content, display properties (Title, FormatString, TextAlign, Width, Frozen for locked scrolling), Sortable property enabling/disabling sorting, Filterable property with FilterTemplate for custom filter UI and FilterValue for programmatic filtering, EditTemplate for inline editing with Editable property to control edit permission, GroupProperty for hierarchical data grouping, FooterTemplate with Sum()/Average()/Count() aggregation functions, child columns for multi-level headers, and Visible property with responsive breakpoint properties (visible-sm, visible-md, etc.). Use Template for complete control over cell rendering, or EditTemplate for edit mode cells.

Inheritance

Object

ComponentBase

RadzenDataGridColumn<TItem>

Implements

IComponent

IHandleEvent

IHandleAfterRender

Inherited Members

ComponentBase.OnInitializedAsync

ComponentBase.OnParametersSet

ComponentBase.OnParametersSetAsync

ComponentBase.StateHasChanged

ComponentBase.ShouldRender

ComponentBase.OnAfterRender

ComponentBase.OnAfterRenderAsync

ComponentBase.InvokeAsync

ComponentBase.DispatchExceptionAsync

ComponentBase.RendererInfo

ComponentBase.Assets

ComponentBase.AssignedRenderMode

Namespace: Radzen.Blazor

Assembly: Radzen.Blazor.dll

Syntax

public class RadzenDataGridColumn<TItem> : ComponentBase, IComponent, IHandleEvent, IHandleAfterRender

Type Parameters

Name Description
TItemThe type of data items in the parent DataGrid. Must match the grid's TItem type.

Examples

Simple data-bound column:

<RadzenDataGridColumn TItem="Order" Property="OrderId" Title="Order ID" />

Formatted column with custom width:

<RadzenDataGridColumn TItem="Order" Property="OrderDate" Title="Date" FormatString="{0:d}" Width="120px" />

Column with custom template:

<RadzenDataGridColumn TItem="Order" Title="Actions" Sortable="false" Filterable="false">
    <Template Context="order">
        <RadzenButton Icon="edit" Click="@(args => EditOrder(order))" />
        <RadzenButton Icon="delete" Click="@(args => DeleteOrder(order))" />
    </Template>
</RadzenDataGridColumn>

Constructors

RadzenDataGridColumn<TItem>link

Defines a column in a RadzenDataGrid, specifying how data is displayed, sorted, filtered, and edited. RadzenDataGridColumn supports data binding via Property, custom templates, formatting, sorting, filtering, grouping, aggregation, and inline editing. Must be placed inside a RadzenDataGrid<T> within the Columns template. Each column represents one field or computed value from the data source. Features data binding using Property to bind to a data field or Template for custom content, display properties (Title, FormatString, TextAlign, Width, Frozen for locked scrolling), Sortable property enabling/disabling sorting, Filterable property with FilterTemplate for custom filter UI and FilterValue for programmatic filtering, EditTemplate for inline editing with Editable property to control edit permission, GroupProperty for hierarchical data grouping, FooterTemplate with Sum()/Average()/Count() aggregation functions, child columns for multi-level headers, and Visible property with responsive breakpoint properties (visible-sm, visible-md, etc.). Use Template for complete control over cell rendering, or EditTemplate for edit mode cells.

Declaration
public RadzenDataGridColumn<TItem>()

Properties

AllowCheckBoxListVirtualizationlink

Gets or sets whether virtualization is enabled for the CheckBoxList filter dropdown. When enabled, only visible checkbox items are rendered for better performance with large datasets. Only applicable when using FilterMode.CheckBoxList.

Declaration
public bool AllowCheckBoxListVirtualization { get; set; }
Property Value
Type Description
boolGets or sets whether virtualization is enabled for the CheckBoxList filter dropdown. When enabled, only visible checkbox items are rendered for better performance with large datasets. Only applicable when using FilterMode.CheckBoxList.

AlwaysShowAllCheckBoxListDatalink

Gets or sets whether the CheckBoxList filter should display all distinct values regardless of filters applied to other columns. When false (default), the filter list is dynamically filtered based on other active column filters. Set to true to always show the complete list of distinct values from the original dataset.

Declaration
public bool AlwaysShowAllCheckBoxListData { get; set; }
Property Value
Type Description
boolGets or sets whether the CheckBoxList filter should display all distinct values regardless of filters applied to other columns. When false (default), the filter list is dynamically filtered based on other active column filters. Set to true to always show the complete list of distinct values from the original dataset.

CalculatedCssClasslink

Gets or sets a function that calculates the CSS class based on the TItem value.

Declaration
public Func<RadzenDataGridColumn<TItem>, TItem, string> CalculatedCssClass { get; set; }
Property Value
Type Description
Func<RadzenDataGridColumn<TItem>, TItem, string>Gets or sets a function that calculates the CSS class based on the TItem value.

CollectionFilterModelink

Gets or sets the mode that determines whether the filter applies to any or all items in a collection.

Declaration
public CollectionFilterMode CollectionFilterMode { get; set; }
Property Value
Type Description
CollectionFilterModeGets or sets the mode that determines whether the filter applies to any or all items in a collection.

ColumnPickerTitlelink

Gets or sets the title in column picker. Value of Title is used when ColumnPickerTitle is not set

Declaration
public string ColumnPickerTitle { get; set; }
Property Value
Type Description
stringGets or sets the title in column picker. Value of Title is used when ColumnPickerTitle is not set

Columnslink

Gets or sets the child columns render fragment for creating composite/hierarchical column headers. When set, this column becomes a header grouping column, and child columns are rendered beneath it. Useful for creating multi-level column headers where related columns are grouped under a common header.

Declaration
public RenderFragment Columns { get; set; }
Property Value
Type Description
RenderFragmentGets or sets the child columns render fragment for creating composite/hierarchical column headers. When set, this column becomes a header grouping column, and child columns are rendered beneath it. Useful for creating multi-level column headers where related columns are grouped under a common header.

ColumnsCollectionlink

Gets the child columns.

Declaration
public IList<RadzenDataGridColumn<TItem>> ColumnsCollection { get; }
Property Value
Type Description
IList<RadzenDataGridColumn<TItem>>Gets the child columns.

CssClasslink

Gets or sets the CSS class applied to data cells.

Declaration
public string CssClass { get; set; }
Property Value
Type Description
stringGets or sets the CSS class applied to data cells.

CustomFilterExpressionlink

Gets or sets the custom filter dynamic Linq dictionary.

Declaration
public string CustomFilterExpression { get; set; }
Property Value
Type Description
stringGets or sets the custom filter dynamic Linq dictionary.

EditTemplatelink

Gets or sets the edit template.

Declaration
public RenderFragment<TItem> EditTemplate { get; set; }
Property Value
Type Description
RenderFragment<TItem>Gets or sets the edit template.

FilterModelink

Gets or sets the filtering UI mode for this column. Controls whether the column uses simple filter controls (textbox in header), advanced filter menu, CheckBoxList, or no filtering. If not set, inherits from the parent grid's FilterMode setting.

Declaration
public FilterMode? FilterMode { get; set; }
Property Value
Type Description
FilterMode?Gets or sets the filtering UI mode for this column. Controls whether the column uses simple filter controls (textbox in header), advanced filter menu, CheckBoxList, or no filtering. If not set, inherits from the parent grid's FilterMode setting.

FilterOperatorlink

Gets or sets the filter operator.

Declaration
public FilterOperator FilterOperator { get; set; }
Property Value
Type Description
FilterOperatorGets or sets the filter operator.

FilterOperatorslink

Gets or sets the filter operators.

Declaration
public IEnumerable<FilterOperator> FilterOperators { get; set; }
Property Value
Type Description
IEnumerable<FilterOperator>Gets or sets the filter operators.

FilterPlaceholderlink

Gets or sets the filter placeholder.

Declaration
public string FilterPlaceholder { get; set; }
Property Value
Type Description
stringGets or sets the filter placeholder.

FilterPropertylink

Gets or sets the filter property name.

Declaration
public string FilterProperty { get; set; }
Property Value
Type Description
stringGets or sets the filter property name.

FilterPropertyTypelink

Gets the filter property type.

Declaration
public Type FilterPropertyType { get; }
Property Value
Type Description
TypeGets the filter property type.

FilterTemplatelink

Gets or sets the filter template.

Declaration
public RenderFragment<RadzenDataGridColumn<TItem>> FilterTemplate { get; set; }
Property Value
Type Description
RenderFragment<RadzenDataGridColumn<TItem>>Gets or sets the filter template.

FilterValuelink

Gets or sets the filter value.

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

FilterValueTemplatelink

Gets or sets the filter value template.

Declaration
public RenderFragment<RadzenDataGridColumn<TItem>> FilterValueTemplate { get; set; }
Property Value
Type Description
RenderFragment<RadzenDataGridColumn<TItem>>Gets or sets the filter value template.

Filterablelink

Gets or sets a value indicating whether this RadzenDataGridColumn<T> is filterable.

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

FooterCssClasslink

Gets or sets the footer CSS class applied to footer cell.

Declaration
public string FooterCssClass { get; set; }
Property Value
Type Description
stringGets or sets the footer CSS class applied to footer cell.

FooterTemplatelink

Gets or sets the footer template.

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

FormatProviderlink

Gets or sets the IFormatProvider used for FormatString.

Declaration
public IFormatProvider FormatProvider { get; set; }
Property Value
Type Description
IFormatProviderGets or sets the IFormatProvider used for FormatString.

FormatStringlink

Gets or sets the format string.

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

Frozenlink

Gets or sets a value indicating whether this RadzenDataGridColumn<T> is frozen.

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

FrozenPositionlink

Gets or sets the frozen position this RadzenDataGridColumn<T>

Declaration
public FrozenColumnPosition FrozenPosition { get; set; }
Property Value
Type Description
FrozenColumnPositionGets or sets the frozen position this RadzenDataGridColumn<T>

Gridlink

Gets or sets the parent RadzenDataGrid that contains this column. This is set automatically via cascading parameter and provides access to grid functionality.

Declaration
public RadzenDataGrid<TItem> Grid { get; set; }
Property Value
Type Description
RadzenDataGrid<TItem>Gets or sets the parent RadzenDataGrid that contains this column. This is set automatically via cascading parameter and provides access to grid functionality.

GroupFooterCssClasslink

Gets or sets the group footer CSS class applied to group footer cell.

Declaration
public string GroupFooterCssClass { get; set; }
Property Value
Type Description
stringGets or sets the group footer CSS class applied to group footer cell.

GroupFooterTemplatelink

Gets or sets the group footer template.

Declaration
public RenderFragment<Group> GroupFooterTemplate { get; set; }
Property Value
Type Description
RenderFragment<Group>Gets or sets the group footer template.

GroupPropertylink

Gets or sets the group property name.

Declaration
public string GroupProperty { get; set; }
Property Value
Type Description
stringGets or sets the group property name.

Groupablelink

Gets or sets a value indicating whether this RadzenDataGridColumn<T> is groupable.

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

HeaderCssClasslink

Gets or sets the header CSS class applied to header cell.

Declaration
public string HeaderCssClass { get; set; }
Property Value
Type Description
stringGets or sets the header CSS class applied to header cell.

HeaderTemplatelink

Gets or sets the header template.

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

HeaderTooltiplink

Gets or sets the header tooltip.

Declaration
public string HeaderTooltip { get; set; }
Property Value
Type Description
stringGets or sets the header tooltip.

HeaderWhiteSpacelink

Gets or sets the header white space style.

Declaration
public WhiteSpace HeaderWhiteSpace { get; set; }
Property Value
Type Description
WhiteSpaceGets or sets the header white space style.

IsInEditModelink

Allows the column to override whether or not this column's the EditTemplate is visible at runtime.

Declaration
public Func<string, TItem, bool> IsInEditMode { get; set; }
Property Value
Type Description
Func<string, TItem, bool>Allows the column to override whether or not this column's the EditTemplate is visible at runtime.

LogicalFilterOperatorlink

Gets or sets the logical filter operator.

Declaration
public LogicalFilterOperator LogicalFilterOperator { get; set; }
Property Value
Type Description
LogicalFilterOperatorGets or sets the logical filter operator.

MaxWidthlink

Gets or sets the max-width.

Declaration
public string MaxWidth { get; set; }
Property Value
Type Description
stringGets or sets the max-width.

MinWidthlink

Gets or sets the min-width.

Declaration
public string MinWidth { get; set; }
Property Value
Type Description
stringGets or sets the min-width.

OrderIndexlink

Gets or sets the order index.

Declaration
public int? OrderIndex { get; set; }
Property Value
Type Description
int?Gets or sets the order index.

Parentlink

Gets or sets the parent column when this column is nested within a composite column structure. This is set automatically via cascading parameter for child columns in hierarchical headers.

Declaration
public RadzenDataGridColumn<TItem> Parent { get; set; }
Property Value
Type Description
RadzenDataGridColumn<TItem>Gets or sets the parent column when this column is nested within a composite column structure. This is set automatically via cascading parameter for child columns in hierarchical headers.

Pickablelink

Gets or sets a value indicating whether this RadzenDataGridColumn<T> is pickable - listed when DataGrid AllowColumnPicking is set to true.

Declaration
public bool Pickable { get; set; }
Property Value
Type Description
boolGets or sets a value indicating whether this RadzenDataGridColumn<T> is pickable - listed when DataGrid AllowColumnPicking is set to true.

Propertylink

Gets or sets the property name.

Declaration
public string Property { get; set; }
Property Value
Type Description
stringGets or sets the property name.

Reorderablelink

Gets or sets a value indicating whether this RadzenDataGridColumn<T> is reorderable.

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

Resizablelink

Gets or sets a value indicating whether this RadzenDataGridColumn<T> is resizable.

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

SecondFilterOperatorlink

Gets or sets the second filter operator.

Declaration
public FilterOperator SecondFilterOperator { get; set; }
Property Value
Type Description
FilterOperatorGets or sets the second filter operator.

SecondFilterValuelink

Gets or sets the second filter value.

Declaration
public object SecondFilterValue { get; set; }
Property Value
Type Description
objectGets or sets the second filter value.

SecondFilterValueTemplatelink

Gets or sets the second filter value template.

Declaration
public RenderFragment<RadzenDataGridColumn<TItem>> SecondFilterValueTemplate { get; set; }
Property Value
Type Description
RenderFragment<RadzenDataGridColumn<TItem>>Gets or sets the second filter value template.

ShowCellDataAsTooltiplink

Gets or sets whether cell values should automatically display as tooltips on hover. Useful for columns that may contain truncated text, allowing users to see the full value.

Declaration
public bool ShowCellDataAsTooltip { get; set; }
Property Value
Type Description
boolGets or sets whether cell values should automatically display as tooltips on hover. Useful for columns that may contain truncated text, allowing users to see the full value.

SortOrderlink

Gets or sets the sort order.

Declaration
public SortOrder? SortOrder { get; set; }
Property Value
Type Description
SortOrder?Gets or sets the sort order.

SortOrderSequencelink

Gets or sets the sequence of the SortOrders to use when sorting the column interactively.

Declaration
public Nullable`1[[Radzen.SortOrder, Blazor, Version=10.0.1.0, Culture=neutral, PublicKeyToken=null]][] SortOrderSequence { get; set; }
Property Value
Type Description
Nullable`1[[Radzen.SortOrder, Radzen.Blazor, Version=10.0.1.0, Culture=neutral, PublicKeyToken=null]][]Gets or sets the sequence of the SortOrders to use when sorting the column interactively.

SortPropertylink

Gets or sets the sort property name.

Declaration
public string SortProperty { get; set; }
Property Value
Type Description
stringGets or sets the sort property name.

Sortablelink

Gets or sets a value indicating whether this RadzenDataGridColumn<T> is sortable.

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

Templatelink

Gets or sets the template.

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

TextAlignlink

Gets or sets the text align.

Declaration
public TextAlign TextAlign { get; set; }
Property Value
Type Description
TextAlignGets or sets the text align.

Titlelink

Gets or sets the title.

Declaration
public string Title { get; set; }
Property Value
Type Description
stringGets or sets the title.

Typelink

Gets or sets the data type.

Declaration
public Type Type { get; set; }
Property Value
Type Description
TypeGets or sets the data type.

UniqueIDlink

Gets or sets the unique identifier.

Declaration
public string UniqueID { get; set; }
Property Value
Type Description
stringGets or sets the unique identifier.

UseDisplayNamelink

Indicates whether the column should automatically use the Name of the bound property as the header.

Declaration
public bool UseDisplayName { get; set; }
Property Value
Type Description
boolIndicates whether the column should automatically use the Name of the bound property as the header.

Visiblelink

Gets or sets a value indicating whether this RadzenDataGridColumn<T> is visible.

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

WhiteSpacelink

Gets or sets the white space style.

Declaration
public WhiteSpace WhiteSpace { get; set; }
Property Value
Type Description
WhiteSpaceGets or sets the white space style.

Widthlink

Gets or sets the width.

Declaration
public string Width { get; set; }
Property Value
Type Description
stringGets or sets the width.

Methods

BuildRenderTreelink

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

ClearFilterslink

Sets to default column filter values and operators.

Declaration
public virtual void ClearFilters()

CloseFilterlink

Closes this column filter popup.

Declaration
public Task CloseFilter()
Returns
Type Description
Task

Disposelink

Disposes this instance.

Declaration
public void Dispose()

GetCollectionFilterModelink

Get column collection filter mode.

Declaration
public CollectionFilterMode GetCollectionFilterMode()
Returns
Type Description
CollectionFilterMode

GetColumnODataFilterlink

Gets an OData expression to filter by this column.

Declaration
public string GetColumnODataFilter(bool second)
Parameters
Type Name Description
bool second Whether to use SecondFilterValue instead of FilterValue
Returns
Type Description
stringAn OData expression to filter by this column.

GetColumnODataFilterlink

Gets an OData expression to filter by this column.

Declaration
protected virtual string GetColumnODataFilter(object filterValue, FilterOperator filterOperator)
Parameters
Type Name Description
object filterValue
FilterOperator filterOperator
Returns
Type Description
stringAn OData expression to filter by this column.

GetCustomFilterExpressionlink

Get custom filter linq.

Declaration
public string GetCustomFilterExpression()
Returns
Type Description
string

GetFilterOperatorlink

Get column filter operator.

Declaration
public FilterOperator GetFilterOperator()
Returns
Type Description
FilterOperator

GetFilterOperatorTextlink

Get filter operator text

Declaration
public string GetFilterOperatorText(FilterOperator filterOperator)
Parameters
Type Name Description
FilterOperator filterOperator
Returns
Type Description
string

GetFilterOperatorslink

Get possible column filter operators.

Declaration
public virtual IEnumerable<FilterOperator> GetFilterOperators()
Returns
Type Description
IEnumerable<FilterOperator>

GetFilterPlaceholderlink

Gets the filter placeholder.

Declaration
public string GetFilterPlaceholder()
Returns
Type Description
stringSystem.String.

GetFilterPropertylink

Gets the filter property.

Declaration
public string GetFilterProperty()
Returns
Type Description
stringSystem.String.

GetFilterValuelink

Get column filter value.

Declaration
public object GetFilterValue()
Returns
Type Description
object

GetGroupPropertylink

Gets the group property.

Declaration
public string GetGroupProperty()
Returns
Type Description
stringSystem.String.

GetLogicalFilterOperatorlink

Get column logical filter operator.

Declaration
public LogicalFilterOperator GetLogicalFilterOperator()
Returns
Type Description
LogicalFilterOperator

GetOrderIndexlink

Gets the order index.

Declaration
public int? GetOrderIndex()
Returns
Type Description
int?

GetSecondFilterOperatorlink

Get column second filter operator.

Declaration
public FilterOperator GetSecondFilterOperator()
Returns
Type Description
FilterOperator

GetSecondFilterValuelink

Get column second filter value.

Declaration
public object GetSecondFilterValue()
Returns
Type Description
object

GetSortIndexlink

Gets the column sort descriptor index indicating order of applied column sort in case of multiple sorting.

Declaration
public int? GetSortIndex()
Returns
Type Description
int?

GetSortOrderlink

Get column sort order.

Declaration
public SortOrder? GetSortOrder()
Returns
Type Description
SortOrder?

GetSortPropertylink

Gets the sort property.

Declaration
public string GetSortProperty()
Returns
Type Description
stringSystem.String.

GetStylelink

Gets the cell style.

Declaration
public virtual string GetStyle(bool forCell, bool isHeaderOrFooterCell, bool isForCol)
Parameters
Type Name Description
bool forCell if set to true [for cell].
bool isHeaderOrFooterCell if set to true [is header or footer cell].
bool isForCol if set to true [is for col element].
Returns
Type Description
stringSystem.String.

GetTitlelink

Gets the column title.

Declaration
public string GetTitle()
Returns
Type Description
stringSystem.String.

GetValuelink

Gets the value for specified item.

Declaration
public virtual object GetValue(TItem item)
Parameters
Type Name Description
TItem item The item.
Returns
Type Description
objectSystem.Object.

GetVisiblelink

Gets if the column is visible or not.

Declaration
public bool GetVisible()
Returns
Type Description
boolSystem.Boolean.

GetWidthlink

Get column width.

Declaration
public string GetWidth()
Returns
Type Description
string

OnInitializedlink

Called when initialized.

Declaration
protected override void OnInitialized()

SetCollectionFilterModelink

Set column collection filter mode.

Declaration
public void SetCollectionFilterMode(CollectionFilterMode? value)
Parameters
Type Name Description
CollectionFilterMode? value

SetCustomFilterExpressionlink

Set column custom filter linq.

Declaration
public void SetCustomFilterExpression(string value)
Parameters
Type Name Description
string value

SetCustomFilterExpressionAsynclink

Set column custom filter linq and reload grid.

Declaration
public Task SetCustomFilterExpressionAsync(string value)
Parameters
Type Name Description
string value Filter value.
Returns
Type Description
Task

SetFilterOperatorlink

Set column filter operator.

Declaration
public void SetFilterOperator(FilterOperator? value)
Parameters
Type Name Description
FilterOperator? value

SetFilterValuelink

Set column filter value.

Declaration
public void SetFilterValue(object value, bool isFirst)
Parameters
Type Name Description
object value
bool isFirst

SetFilterValueAsynclink

Set column filter value and reload grid.

Declaration
public Task SetFilterValueAsync(object value, bool isFirst)
Parameters
Type Name Description
object value Filter value.
bool isFirst true if FilterValue; false for SecondFilterValue
Returns
Type Description
Task

SetLogicalFilterOperatorlink

Set column logical operator.

Declaration
public void SetLogicalFilterOperator(LogicalFilterOperator value)
Parameters
Type Name Description
LogicalFilterOperator 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.

SetSecondFilterOperatorlink

Set column second filter operator.

Declaration
public void SetSecondFilterOperator(FilterOperator? value)
Parameters
Type Name Description
FilterOperator? value

SetTitlelink

Sets the column title.

Declaration
public void SetTitle(string value)
Parameters
Type Name Description
string value

SetWidthlink

Set column width.

Declaration
public void SetWidth(string value)
Parameters
Type Name Description
string value

ShowTimeForDateTimeFilterlink

Gets value indicating if the user can specify time in DateTime column filter.

Declaration
public virtual bool ShowTimeForDateTimeFilter()
Returns
Type Description
bool

ShowUpDownForNumericFilterlink

Gets value indicating if up and down buttons are displayed in numeric column filter.

Declaration
public virtual bool ShowUpDownForNumericFilter()
Returns
Type Description
bool
An error has occurred. This app may no longer respond until reloaded. Reload 🗙