Files
grocy/public/viewjs/quantityunits.js

81 lines
1.6 KiB
JavaScript
Raw Normal View History

2018-07-09 19:27:22 +02:00
var quantityUnitsTable = $('#quantityunits-table').DataTable({
'order': [[1, 'asc']],
'columnDefs': [
{ 'orderable': false, 'targets': 0 },
{ 'searchable': false, "targets": 0 }
].concat($.fn.dataTable.defaults.columnDefs)
2018-07-09 19:27:22 +02:00
});
$('#quantityunits-table tbody').removeClass("d-none");
quantityUnitsTable.columns.adjust().draw();
2018-07-09 19:27:22 +02:00
$("#search").on("keyup", Delay(function()
2018-07-09 19:27:22 +02:00
{
var value = $(this).val();
if (value === "all")
{
value = "";
}
2018-07-09 19:27:22 +02:00
quantityUnitsTable.search(value).draw();
}, 200));
2018-07-09 19:27:22 +02:00
$("#clear-filter-button").on("click", function()
{
$("#search").val("");
quantityUnitsTable.search("").draw();
});
2020-08-30 12:18:16 +02:00
$(document).on('click', '.quantityunit-delete-button', function(e)
2017-04-15 23:16:20 +02:00
{
var objectName = $(e.currentTarget).attr('data-quantityunit-name');
var objectId = $(e.currentTarget).attr('data-quantityunit-id');
2017-04-15 23:16:20 +02:00
bootbox.confirm({
message: __t('Are you sure you want to delete quantity unit "%s"?', objectName),
closeButton: false,
2017-04-15 23:16:20 +02:00
buttons: {
confirm: {
label: 'Yes',
className: 'btn-success'
},
cancel: {
label: 'No',
className: 'btn-danger'
}
},
callback: function(result)
{
if (result === true)
2017-04-15 23:16:20 +02:00
{
Grocy.Api.Delete('objects/quantity_units/' + objectId, {},
2017-04-15 23:16:20 +02:00
function(result)
{
window.location.href = U('/quantityunits');
2017-04-15 23:16:20 +02:00
},
function(xhr)
{
console.error(xhr);
}
);
}
}
});
});
$("#show-disabled").change(function()
{
if (this.checked)
{
window.location.href = U('/quantityunits?include_disabled');
}
else
{
window.location.href = U('/quantityunits');
}
});
if (GetUriParam('include_disabled'))
{
$("#show-disabled").prop('checked', true);
}