New to Telerik UI for ASP.NET Core? Start a free 30-day trial
Transfer ListBox Items on Double Click
Environment
Product | Progress® Telerik® UI ListBox for UI for ASP.NET Core |
Description
How can I transfer items between ListBoxes by double-clicking the Telerik UI for ASP.NET Core ListBox?
Solution
- Handle the
dblclick
event on the items in both ListBoxes. - In the event handler, based on the ListBox, manually execute the
transferTo
ortransferFrom
command.
Index.cshtml
@(Html.Kendo().ListBox()
.Name("listBoxA")
.ConnectWith("listBoxB")
.BindTo(new List<string>() { "Value 1", "Value 2", "Value 3"}))
@(Html.Kendo().ListBox()
.Name("listBoxB")
.BindTo(new List<string>())
.Selectable(ListBoxSelectable.Multiple))