Here's an example:
http://jsbin.com/mebihexosa/2/edit?html,js,output
I'm not able to click or edit the input text inside the filtered element (li class="filter").
I'm also having this problem. Did anyone find a solution?
The problem seems to be caused by this line:
https://github.com/RubaXa/Sortable/blob/master/Sortable.js#L295
It's preventing the default click action from reaching the <input>.
@grokys All correctly, exactly that works filter.
@KuroNoDev Why don't you do so:
http://jsbin.com/relupasuto/edit?html,js,output
@RubaXa perfect
This is still applicable for me. It's the _event. preventDefault()_ call when the filtering using a selector triggers:
https://github.com/RubaXa/Sortable/blob/master/Sortable.js#L301
Perhaps event.stopPropagation() is more appropriate method to call here?
@ashein Looks like you can also set preventOnFilter:false in options to opt out of the event.preventDefault
Most helpful comment
This is still applicable for me. It's the _event. preventDefault()_ call when the filtering using a selector triggers:
https://github.com/RubaXa/Sortable/blob/master/Sortable.js#L301