New to Telerik UI for ASP.NET Core? Download free 30-day trial

Adaptive Mode

The Telerik UI for ASP.NET Core ComboBox supports an adaptive mode that provides a mobile-friendly rendering of its popup. Which will accommodate its content based on the current screen size.

To set the adaptive mode, use the AdaptiveMode() option.

    @(Html.Kendo().ComboBox()
        .Name("combobox")
        .DataTextField("ProductName")
        .DataValueField("ProductID")
        .AdaptiveMode(AdaptiveMode.Auto)
        .DataSource(source =>
        {
            source.Read(read =>
            {
                read.Action("Products_Read", "ComboBox");
            });
        })
    )
    <kendo-combobox name="combobox"
                    adaptive-mode="AdaptiveMode.Auto"
                    datatextfield="ProductName"
                    datavaluefield="ProductID">
        <datasource>
            <transport>
                <read url="@Url.Action("Products_Read", "ComboBox")" />
            </transport>
        </datasource>
    </kendo-combobox>

See Also

In this article