New to Telerik UI for ASP.NET MVC? Start a free 30-day trial
Transfer ListBox Items on Double Click
Updated over 6 months ago
Environment
| Product | Progress® Telerik® UI ListBox for UI for ASP.NET MVC |
Description
How can I transfer items between ListBoxes by double-clicking the Telerik UI for ASP.NET MVC ListBox?
Solution
- Handle the
dblclickevent on the items in both ListBoxes. - In the event handler, based on the ListBox, manually execute the
transferToortransferFromcommand.
Razor
@(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))