Hi,
I am setting up a Kendo sortable with a grid.
@(Html.Kendo().Sortable()
.For("#MyGrid")
.Filter(".sortable, table > tbody > tr:not(.k-grid-edit-row)")
.Disabled(".disabledDragSort")
.Cursor("move")
.HintHandler("ConfigureHint")
.PlaceholderHandler("placeholder")
.ContainerSelector("#MyGrid tbody")
.Events(events => events.Start("onStart").Change("onChange"))
)
When I set the filter as above it does not work. I am trying to filter for two separate jQuery selectors, separated by a comma. It does not work. When I remove one or the other, for example: .Filter(".sortable"), it works. What can I do to get this working?
I am setting up a Kendo sortable with a grid.
@(Html.Kendo().Sortable()
.For("#MyGrid")
.Filter(".sortable, table > tbody > tr:not(.k-grid-edit-row)")
.Disabled(".disabledDragSort")
.Cursor("move")
.HintHandler("ConfigureHint")
.PlaceholderHandler("placeholder")
.ContainerSelector("#MyGrid tbody")
.Events(events => events.Start("onStart").Change("onChange"))
)
When I set the filter as above it does not work. I am trying to filter for two separate jQuery selectors, separated by a comma. It does not work. When I remove one or the other, for example: .Filter(".sortable"), it works. What can I do to get this working?