Skip to main content

BuilderFactoryExtensions.BootstrapComboBox(BuilderFactory, String) Method

Creates a Combo Box control with a specified name.

Namespace: DevExpress.AspNetCore

Assembly: DevExpress.AspNetCore.Bootstrap.v18.2.dll

Declaration

public static BootstrapComboBoxBuilder BootstrapComboBox(
    this BuilderFactory builderFactory,
    string name
)

Parameters

Name Type Description
builderFactory BuilderFactory

A BuilderFactory object providing access to Combo Box settings.

name String

A control name.

Returns

Type Description
BootstrapComboBoxBuilder

A builder for a Combo Box control.

Remarks

IMPORTANT

Bootstrap Controls for ASP.NET Core are in maintenance mode. We don’t add new controls or develop new functionality for this product line. Our recommendation is to use the ASP.NET Core Controls suite.

The code sample below demonstrates how you can use this method to create a Combo Box control.

@(Html.DevExpress()
    .BootstrapComboBox("comboBoxDefault")
    .Value("Item2")
    .Items(items => {
        items.Add()
            .Text("Item1")
            .Value("Item1");
        items.Add()
            .Text("Item2")
            .Value("Item2");
        items.Add()
            .Text("Item3")
            .Value("Item3");
        items.Add()
            .Text("Item4")
            .Value("Item4");
        items.Add()
            .Text("Item5")
            .Value("Item5");
    })
)
See Also