using I have approx the following sortable markup using a font icon for the drag icon
<div class="sortable">
<div class="row">
<div class="handle"><i class="fa fa-arrow-v"></i></div>
<div>other content</div>
</div>
</div>
when I setup the sortable as follows:
var sortable = $(".sortable").kendoSortable({
handler: ".handle",
});
how can I ignore the <i> element to allow the whole div to initiate sorting?
<div class="sortable">
<div class="row">
<div class="handle"><i class="fa fa-arrow-v"></i></div>
<div>other content</div>
</div>
</div>
when I setup the sortable as follows:
var sortable = $(".sortable").kendoSortable({
handler: ".handle",
});
how can I ignore the <i> element to allow the whole div to initiate sorting?