Parent: [b6a8b7] (diff)

Download this file

mass-edit.js    24 lines (19 with data), 631 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
function update_tickets(){
var $checked=$('input:checked'), count=$checked.length;
if ( !count ) {
$('#result').text('No tickets selected for update.');
return;
}
var data={};
data.selected = $checked.map(function(){ return this.name; }).get().join(',');
$('#update-values').find('input, select').each(function(){
this.value && (data[this.name]=this.value);
});
$.post('../update_tickets', data, function(){
$('#result').text('Updated '+count+' ticket'+(count!=1 ? 's' : ''));
location.reload();
});
}
$(function(){
$('#assigned_to').val('');
});