Files
grocy/public/viewjs/locations.js

81 lines
1.6 KiB
JavaScript
Raw Permalink Normal View History

2018-07-09 19:27:22 +02:00
var locationsTable = $('#locations-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
});
$('#locations-table tbody').removeClass("d-none");
locationsTable.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
locationsTable.search(value).draw();
}, Grocy.FormFocusDelay));
2018-07-09 19:27:22 +02:00
$("#clear-filter-button").on("click", function()
{
$("#search").val("");
locationsTable.search("").draw();
});
2020-08-30 12:18:16 +02:00
$(document).on('click', '.location-delete-button', function(e)
2017-04-15 23:16:20 +02:00
{
var objectName = $(e.currentTarget).attr('data-location-name');
var objectId = $(e.currentTarget).attr('data-location-id');
2017-04-15 23:16:20 +02:00
bootbox.confirm({
message: __t('Are you sure you want to delete location "%s"?', objectName),
closeButton: false,
2017-04-15 23:16:20 +02:00
buttons: {
confirm: {
label: __t('Yes'),
2017-04-15 23:16:20 +02:00
className: 'btn-success'
},
cancel: {
label: __t('No'),
2017-04-15 23:16:20 +02:00
className: 'btn-danger'
}
},
callback: function(result)
{
if (result === true)
2017-04-15 23:16:20 +02:00
{
Grocy.Api.Delete('objects/locations/' + objectId, {},
2017-04-15 23:16:20 +02:00
function(result)
{
window.location.href = U('/locations');
2017-04-15 23:16:20 +02:00
},
function(xhr)
{
console.error(xhr);
}
);
}
}
});
});
$("#show-disabled").change(function()
{
if (this.checked)
{
window.location.href = U('/locations?include_disabled');
}
else
{
window.location.href = U('/locations');
}
});
if (GetUriParam('include_disabled'))
{
$("#show-disabled").prop('checked', true);
}