TreeListSelectionColumnCellDisplayTemplateContext.SelectEnabled Property
Returns whether the select operation is available for a row from a remote data source.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.1.dll
NuGet Package: DevExpress.Blazor
Declaration
public bool SelectEnabled { get; }
Property Value
Type | Description |
---|---|
Boolean |
|
Remarks
A selection column contains checkboxes or radio buttons depending on the selection mode. You can define the column’s CellDisplayTemplate to display custom select elements in column cells that correspond to data rows.
The select operation can be temporarily unavailable if you bind the TreeList to the GridDevExtremeDataSource or load data on demand. The SelectEnabled
context parameter returns false
while the select operation cannot be performed. Once this operation becomes available, this parameter returns true
.
In the template, use the SelectEnabled
parameter to specify the enabled or disabled state for a custom select element. In the same way, you can use the SelectAllEnabled parameter in the selection column’s HeaderTemplate.
@inject CitiesService CitiesService
<DxTreeList Data="@Data"
KeyFieldName="ID"
ParentKeyFieldName="ParentID"
HasChildrenFieldName="HasChildren"
SelectionMode="TreeListSelectionMode.Single"
@bind-SelectedDataItem="@SelectedDataItem">
<Columns>
<DxTreeListSelectionColumn>
<CellDisplayTemplate >
<DxButton Click="@(() => context.TreeList.SelectRow(context.VisibleIndex))"
Text="Select" RenderStyle="ButtonRenderStyle.Link"
Enabled="context.SelectEnabled"/>
</CellDisplayTemplate>
</DxTreeListSelectionColumn>
<DxTreeListDataColumn Caption="Location" FieldName="Name" />
<DxTreeListDataColumn FieldName="CityType" />
<DxTreeListDataColumn FieldName="Year" DisplayFormat="d"/>
<DxTreeListDataColumn FieldName="RecordType" />
<DxTreeListDataColumn FieldName="Population" />
</Columns>
</DxTreeList>
@code {
object Data { get; set; }
object SelectedDataItem { get; set; }
protected override async Task OnInitializedAsync() {
var cities = await CitiesService.GetCitiesAsync();
Data = new GridDevExtremeDataSource<Location>(cities.AsQueryable());
}
}