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

ListViewSelectableSettingsBuilder

Methods

Enabled(System.Boolean)

Enables or disables selection.

Parameters

value - System.Boolean

The value for enabling or disabling selection.

Example


             @(Html.Kendo().ListView<ProductViewModel>()
                    .Name("productsLitView")
                    .Selectable(select=>select.Mode(ListViewSelectionMode.Multiple))
                    .DataSource(dataSource => dataSource
                        .Ajax()
                        .Read(read => read.Action("Products_Read", "ListView"))
                        .PageSize(21)
                    )
            )

Mode(Kendo.Mvc.UI.ListViewSelectionMode)

Represents the selection modes supported by Kendo UI ListView for ASP.NET MVC

Parameters

value - ListViewSelectionMode

The value for Mode

In this article
Not finding the help you need?