a5hik / ng-sortable

AngularJS Library for Drag and Drop, supports Sortable and Draggable. Supports Touch devices.

Home Page:http://a5hik.github.io/ng-sortable/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

When scrollbar is present, can't drag below a threshhold

JohnnyToumieh opened this issue · comments

When there's a scrollbar present, I can't drag the element till the end of the list!! It's like it's restricted within a certain bound: the list which was initially shown... (i.e. If i slide all the way to the top, I can drag any row to wherever I want.

As you can see in the following picture, we can see there's a spot at 13 that got "reserved" and that's where I was dragging! But the text and the row do not follow!

bug

html part:

<div class="col-md-6 col-xs-6 no-padding">
	<div class="well" data-as-sortable="board.dragControlListeners" data-ng-model="songs">
	   <div class="row songitem {{$index % 2 == 0 ? 'even' : 'odd'}}" ng-if="songs" data-ng-repeat="song in songs" data-as-sortable-item>
	      <div class="col-xs-12 noselect" data-as-sortable-item-handle>
	      	<div class="float-left">
	      		{{song.name}}
	      	</div>
	  	  </div>
		</div>
	</div>
</div>

Any work around on this?

3 years later and no fix or responses ??? I have the same problem