0

I have this HTML:

<table class="table">
    <tr>
       <th>Logo</th>
       <th>Artical</th>
       <th>News</th>
    </tr>
    <tr id="sortable">
       <td>something</td>
       <td class="ui-state-default">2014 news from our department</td>
       <td class="ui-state-default"></td>
    </tr>
</table>

with this JavaScript code to allow the user to drag text from artical column to news column and vice versa

<script>
        $(function () {
            $("#sortable").sortable();
            $("#sortable").disableSelection();
        });
</script>

the problem: It's painful to drag and drop from column to other, I often fail when trying to drag the item over the column.. I should snipe to succeed! anyone face this problem?

http://jsfiddle.net/ffz3cphg/

Moob
  • 14,420
  • 1
  • 34
  • 47
Dot Freelancer
  • 4,083
  • 3
  • 28
  • 50

1 Answers1

0

Have you tried to adjust the scrollSensitivity value?

For instance:

$("#sortable").sortable({scrollSensivity:300});

See this post.

Community
  • 1
  • 1
David Rego
  • 163
  • 2
  • 13