Add Message alert in Advanced Logbook

pull/3151/head
Emiliano Macedonio 2024-06-19 16:13:22 +02:00
rodzic 24f3b3397c
commit 05f4f4ea92
1 zmienionych plików z 9 dodań i 1 usunięć

Wyświetl plik

@ -616,7 +616,15 @@ $(document).ready(function () {
var elements = $('#qsoList tbody input:checked');
var nElements = elements.length;
if (nElements == 0) {
return;
BootstrapDialog.alert({
title: 'INFO',
message: 'Select a row from the list for Quickfilter search.',
type: BootstrapDialog.TYPE_INFO,
closable: false,
draggable: false,
callback: function (result) {
}
});
}
if (nElements > 1) {
BootstrapDialog.alert({