Skip to main content

Search and Top Navigation

#8183 closed bug (notabug)

Opened March 13, 2012 10:42AM UTC

Closed March 13, 2012 01:01PM UTC

bug in dragging effect between sortable lists in chrome IE7

Reported by: pionet Owned by:
Priority: minor Milestone: 1.9.0
Component: ui.sortable Version: 1.8.16
Keywords: Cc:
Blocked by: Blocking:
Description

code:

<script type="text/javascript">

$(function () {

$("ul.meals_text").sortable({

connectWith: "ul",

update: function (event, ui) {ItemMoved(ui.item) }

dropOnEmpty: true

});

});

</script>

<div class="meals_day_01">

<div class="meal_01" >

<ul class="meals_text ui-sortable" title="בוקר">

<li id="652" class="link_daily fav">aaa</li>

<li id="653" class="link_daily">bbb</li>

</ul>

</div>

<div class="bottom_meal_01"></div>

<div class="meal_02">

<ul class="meals_text ui-sortable" >

<li id="656" class="link_daily" >ccc</li>

</ul>

</div>

<div class="bottom_meal_02"></div>

<div class="meal_01">

<ul class="meals_text ui-sortable">

<li id="660" class="link_daily ">eee</li>

<li id="662" class="link_daily">fff</li>

</ul>

</div>

<div class="bottom_meal_01"></div>

<div class="meal_02">

<ul class="meals_text ui-sortable">

<li id="665" class="link_daily ">gggg</li>

.....

we have 2 different problems with the dragging effect:

1) in chrome when the page is scrolled down the item is presented much higher during dragging than it should be(the difference in height depends on the scrolling) .

2) in ie7 during dragging the item is presented behind the div that contains the ul.

Attachments (0)
Change History (1)

Changed March 13, 2012 01:01PM UTC by scottgonzalez comment:1

resolution: → invalid
status: newclosed

Thanks for reporting these issues, but please only report one issue per ticket. Also, as mentioned in the red box, please create a reduced test case using jsbin or jsFiddle instead of dumping code into the ticket.