チェックボックスをクリックすると、チェックされているかどうかに関係なく、行のすべてのチェックボックスが表示されます(3つのチェックボックス)。
チェックボックスをクリックすると
update_order_status(this);
function update_order_status(e){
var order_id = $(e).parents('tr').find('.order_id').html();
var status_id = $(e).parents('tr').find('.status_id').val();
$(e).parents('tr').find('input').each(function(i){
//watch all input on the page, but not row
});
}