Hi suit,
hast Du eine Ahnung, warum in folgendem Code die Input-fields nicht anwählbar und ausfüllbar sind?
<html>
<head>
<script type="text/javascript" src="slbox/jquery.min.js"></script>
<script type="text/javascript" src="slbox/jquery-ui-1.9.0.custom.min.js"></script>
</head>
<body>
<script>
$(function() {
$( "#sort" ).sortable({
items: 'tbody',
opacity: 0.6,
helper: function(event, element) {
helper = element.clone();
$('td', helper).each(function(index) {
$(this).width($('td', element).eq(index).width());
});
return helper;
}
}).disableSelection();
});
</script>
<form>
<table id="sort" BORDER=1 CELLSPACING=1 CELLPADDING=2>
<thead></thead>
<tbody>
<tr>
<td>111</td>
<td>04.10.2012</td>
<td>122050</td>
<td>3.0</td>
<td>qqqqq</td>
<td></td>
<td><input type=text name="feld1" value="0.00"></td>
<td ><input type=text name="feld2" value="0.00"></td>
<td >Test123</td>
</tr>
<tr>
<td colspan=4>
</td>
<td>
xdhstrh
</td>
<td colspan=4>
</td>
</tr>
</tbody>
</table></form>
</body>
</html>