Bulk edit multple rows in a table that are checked with a check box

I have a table and I want to update each row with input fields where the check box is checked. Here is my update button.

 'click .bulkButton': function(evt,tmpl){


var bulkTitle = tmpl.find('.bulkTitle').value;
var bulkTime = tmpl.find('.bulkTime').value;
var bulkDate = tmpl.find('.bulkDate').value;
var bulkLocation = tmpl.find('.bulkLocation').value;
var bulkReminder = tmpl.find('.bulkReminder').value;
var bulkNotes = tmpl.find('.bulkNotes').value;
var bulkRev = tmpl.find('.bulkRev').value;
var bulkExp = tmpl.find('.bulkExp').value;
console.log('button works');
updateProject(bulkDate,bulkTitle,bulkTime,bulkLocation,bulkReminder,bulkNotes,bulkRev,bulkExp);

  }
 })

var updateProject = function(bulkDate,bulkTitle,bulkTime,bulkLocation,bulkReminder,bulkNotes,bulkRev,bulkExp){

Tasks.update(Session.get('editing_project'), {$set: {date:bulkDate,title:bulkTitle,time:bulkTime,location:bulkLocation,reminder:bulkReminder,notes:bulkNotes,revenue:bulkRev,expense:bulkExp}},{multi:true});
return true;
 }