risolto problema filto default

This commit is contained in:
nicola 2025-03-19 22:38:51 +01:00
parent 3bb611c248
commit 2aee1f4cf1
1 changed files with 8 additions and 16 deletions

View File

@ -1067,11 +1067,6 @@ $(document).ready(function() {
filterOn = false;
}
break;
/*case "CommentoRes":
$(".filterRiferimentiOn").css('display', 'none');
$(".filterRiferimentiOff").css('display', 'inline-block');
filterOn = true;
break;*/
case "CommentoQuery":
if(parcid[4] == "On"){
$(".filterRiferimentiOn").css('display','none');
@ -1096,7 +1091,6 @@ $(document).ready(function() {
return
}
var commentArea = $('#displaynote');
var idCommento = "CommentoQuery_" + parcid[1] + "_" + parcid[2] + "_" + parcid[3];
@ -1121,18 +1115,15 @@ $(document).ready(function() {
} else {
versText = ", Verso " + gruppoVersi;
}
currentGroup = createNoteGroup(cantica, getRoman(parcid[2]), versText, k, commentsSQL[k].length)
noteAdded = false;
commentsSQL[k].forEach(function(value, i) {
currentGroup.append(createNoteEntry(value, k, i, filterOn, risultato))
});
if (!filterOn) {
commentArea.append(currentGroup);
} else {
if (!k.includes("-")) {
commentArea.append(currentGroup);
}
if (k.includes("-") && !noteAdded && filterOn) {
currentGroup.css('display', 'none');
}
}
$('#tab-list #vis0-tab').tab('show')
@ -1218,10 +1209,10 @@ $(document).ready(function() {
function createNoteEntry(comments, id, pos, filterOn, risultato) {
var idref = comments.IdRiferimento
var noteCard = $('<div class="card card-body well well-sm mx-1 mb-1 mt-0 p-0 border-lida08" id="noteCard' + id + '_' + pos + '"' + ' name= "' + idref + '">');
if(risultato){
if (isCommentInResult(idref)) {
var noteCard = $('<div class="card card-body bg-light border-success well well-sm mx-1 mb-1 mt-0 p-0" id="noteCard' + id + '_' + pos + '"' + ' name= "' + idref + '">');
noteAdded = true;
}else{
if (filterOn) {
noteCard.css("display", "none");
@ -1280,6 +1271,7 @@ $(document).ready(function() {
}
collapseCardBody.appendTo(collapseNote);
collapseNote.appendTo(noteCard);
return noteCard;
}