Tabel yang saya punya :
Apabila baris ke-3 saya hapus maka akan menjadi sbb :
Yang saya inginkan :
Solusi :
$('#remove_row').click(function () {
var $row = $tbody.find('.highlight')
$row.remove();
renumberRows();
});
function renumberRows() {
$('#data tr').each(function(index, el){
$(this).children('td').first().text(index++);
});
}
** (BELAJAR,BELAJAR,BELAJAR) **
Referensi :
No comments:
Post a Comment