TBody problem when draggable or sortable with IE

TBody problem when draggable or sortable with IE


I found a strange issue when assign a draggable or sortable to a tbody
element under IE7. The helper and placeholder cannot show up. This
problem only found at IE7, the firefox is greate.
Any body can help me?
Here is the sample code:
$("#testtable").sortable({
items: ".testtbody",
revert: true,
tree: true
});
<table id="testtable">
<tbody id="testtbody_1" class="testtbody">
<tr>
<td>
aaaaaaaaaaaaaaaa
</td>
<td>
------
</td>
<td>
------
</td>
</tr>
<tr>
<td>
bbbbbbbbbbbbbbbbbbb
</td>
<td>
------
</td>
<td>
------
</td>
</tr>
</tbody>
<tbody id="testtbody_2" class="testtbody">
<tr>
<td>
ccccccccccccccccccc
</td>
<td>
------
</td>
<td>
------
</td>
</tr>
<tr>
<td>
dddddddddddddddddddd
</td>
<td>
------
</td>
<td>
------
</td>
</tr>
</tbody>
</table>