onchange以在do_sum()函数中传递Item_No。 当我更改my_txt_bx colume然后调用do_sum函数并传递行号或 ITEM_NO。
var my_txt_bx ='shipped_qty" onchange="do_sum(Item_No);"';
$('#myTableEdit').Tabledit({
editButton: true,
removeButton: false,
columns: {
identifier: [0, 'Item_No'],
editable: [[0, 'Item_No'],[1, 'Item'],[2, 'Units'],[3, 'Required'],[4, 'Approved'],[5,my_txt_bx],[6,'Total']]
}
});
function do_sum(Item_No)
{
alert('Item_No..'+Item_No)
}