Hello, when using a sortaable list is it possible to ignore more than one type of input? Here is my code:
@(Html.Kendo().Sortable()
.For("#Termset")
.ConnectWith("#AnotherWindow")
.Ignore("input")
.PlaceholderHandler("placeholder")
.Cursor("url('" + Url.Content("~/content/web/sortable/grabbing.cur") + "'), default")
)
As you can see I have defined "ignore" to pass over input fields so that the user can still enter data, I have other elements though which I need it to ignore. Can you define multiple elements for the sortable list to ignore?
Thanks