ASP.NET Core ComboBox Setup

Shield UI ComboBox for ASP.NET Core is a server-side wrapper component implemented as an ASP.NET Core MVC Helper.

For a detailed guide how to setup Shield UI for your ASP.NET Core project, check out this page.

The ASP.NET Core MVC helper API is a 1:1 mapping of the JavaScript ComboBox widget configuration, so you only have to get familiar with a single set of configuration options:

//JavaScript Combobox demo
$("#comboBoxTech").shieldComboBox({
    dataSource: {
        data: technologies
    },
    autoComplete: {
        enabled: true
    }
});
// ASP.NET Core Combobox demo
@(Html.ShieldComboBox()
    .Name("comboBoxTech")
    .DataSource(dsb => dsb.Data(technologies))
    .AutoComplete(ab => ab.Enabled(true))
)

To see the configuration options in action, please refer to our online demos.