Skip to main content
A newer version of this page is available. .

DxListBox<TData, TValue>.ReadOnly Property

Specifies whether the read-only mode is active.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v20.2.dll

NuGet Package: DevExpress.Blazor

Declaration

[Parameter]
public override bool ReadOnly { get; set; }

Property Value

Type Description
Boolean

true to activate the read-only mode; otherwise, false.

Remarks

The <DxListBox> component allows you to display the selected item, but do not allow users to change it. Set the ReadOnly property to true to activate read-only mode.

<DxListBox ReadOnly="true" Data="@Staff.DataSource" Values="@Values" />

@code {
    IEnumerable<Person> Values => Staff.DataSource.Take(1);
}
See Also