Hello!
Is there a way to hide or disable the Remove button conditionally for some items only?
I want to prevent the user from removing items that were already used on another list, while enabling them to add more or remove the items not inused.
I use the MVC approach:
@(Html.Kendo().MultiSelect()
.Name("SelectedCategories")
.DataValueField("Id")
.DataTextField("Title")
.Placeholder("Select categories...")
.AutoClose(false)
.ValuePrimitive(true)
.ClearButton(false)
.DataSource(ds => ds.Read(read => read.Action("GeCategories", "Category")))
.BindTo("Categories")
)
TIA! :o)
Ross