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>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"jQuery UI" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---