Skip to main content

BootstrapCheckBoxList.Items Property

Gets the collection of items in the Check Box List.

Namespace: DevExpress.Web.Bootstrap

Assembly: DevExpress.Web.Bootstrap.v23.2.dll

NuGet Package: DevExpress.Web.Bootstrap

Declaration

[PersistenceMode(PersistenceMode.InnerProperty)]
[Themeable(false)]
public BootstrapListEditItemCollection Items { get; }

Property Value

Type Description
BootstrapListEditItemCollection

A BootstrapListEditItemCollection instance representing the collection of the editor’s items.

Example

This example demonstrates the basic functionality of the Check Box List control.

The image below shows the result:

BootstrapCheckBoxList_Example

<dx:BootstrapCheckBoxList runat="server">
    <Items>
        <dx:BootstrapListEditItem Text="WinForms" Value="WinForms" />
        <dx:BootstrapListEditItem Text="ASP.NET" Value="ASP.NET" Selected="true" />
        <dx:BootstrapListEditItem Text="ASP.NET MVC" Value="ASP.NET MVC" Selected="true" />
        <dx:BootstrapListEditItem Text="WPF" Value="WPF" />
    </Items>
</dx:BootstrapCheckBoxList>
See Also