Skip to main content

BootstrapComboBoxProperties.Items Property

Gets the collection of items displayed in the Combo Box editor’s dropdown window.

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 that is the collection of items in the editor.

Remarks

 <dx:BootstrapComboBox runat="server" Width="300" ID="BootstrapComboBox1">  
    <Items>  
        <dx:BootstrapListEditItem Text="1" Value="1"></dx:BootstrapListEditItem>  
        <dx:BootstrapListEditItem Text="2" Value="2"></dx:BootstrapListEditItem> 
        <dx:BootstrapListEditItem Text="3" Value="3"></dx:BootstrapListEditItem> 
        ...
    </Items>  
 </dx:BootstrapComboBox>  
See Also