Hey i want to change the name attribute of a table once the row is draged from one group into the other. I get the row of which name attribute to be changed and the target name. but my javascript function is not changing the row name This is what I tried so far
<script type="text/javascript">
$(document).ready(function() {
$('#sort').tableDnD({
onDrop: function(table, row) {
var patent_id = row.id;
var target_group_id = getpreviousSiblingName(row);
var data = {PID:patent_id, TGID:target_group_id};
**changename(patent_id,target_group_id);**
$.ajax({
type: "POST",
data: data,
url:"{{ path('MunichInnovationGroupBundle_patent_dragpatent') }}",
cache: false
});
},
dragHandle: ".dragHandle"
});
$("#sort tr").hover(function() {
if($(this).hasClass('tr_group'))
$(this.cells[0]).addClass('showDragHandle');
}, function() {
$(this.cells[0]).removeClass('showDragHandle');
});
});
</script>
<script>
function changename(row_id,row_name){
var row = document.getElementById(row_id);
alert(row_id);
alert(row_name);
row.name=row_name;
return true;
}
</script>