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; filterOn = false;
} }
break; break;
/*case "CommentoRes":
$(".filterRiferimentiOn").css('display', 'none');
$(".filterRiferimentiOff").css('display', 'inline-block');
filterOn = true;
break;*/
case "CommentoQuery": case "CommentoQuery":
if(parcid[4] == "On"){ if(parcid[4] == "On"){
$(".filterRiferimentiOn").css('display','none'); $(".filterRiferimentiOn").css('display','none');
@ -1095,7 +1090,6 @@ $(document).ready(function() {
if (!cantoDisplayed.includes('#vistaFrasi') && !hasCommentsJson(cid)) { if (!cantoDisplayed.includes('#vistaFrasi') && !hasCommentsJson(cid)) {
return return
} }
var commentArea = $('#displaynote'); var commentArea = $('#displaynote');
var idCommento = "CommentoQuery_" + parcid[1] + "_" + parcid[2] + "_" + parcid[3]; var idCommento = "CommentoQuery_" + parcid[1] + "_" + parcid[2] + "_" + parcid[3];
@ -1121,19 +1115,16 @@ $(document).ready(function() {
} else { } else {
versText = ", Verso " + gruppoVersi; versText = ", Verso " + gruppoVersi;
} }
currentGroup = createNoteGroup(cantica, getRoman(parcid[2]), versText, k, commentsSQL[k].length) currentGroup = createNoteGroup(cantica, getRoman(parcid[2]), versText, k, commentsSQL[k].length)
noteAdded = false; noteAdded = false;
commentsSQL[k].forEach(function(value, i) { commentsSQL[k].forEach(function(value, i) {
currentGroup.append(createNoteEntry(value, k, i, filterOn, risultato)) currentGroup.append(createNoteEntry(value, k, i, filterOn, risultato))
}); });
if (!filterOn) { commentArea.append(currentGroup);
commentArea.append(currentGroup);
} else { if (k.includes("-") && !noteAdded && filterOn) {
if (!k.includes("-")) { currentGroup.css('display', 'none');
commentArea.append(currentGroup); }
}
}
} }
$('#tab-list #vis0-tab').tab('show') $('#tab-list #vis0-tab').tab('show')
}) })
@ -1218,11 +1209,11 @@ $(document).ready(function() {
function createNoteEntry(comments, id, pos, filterOn, risultato) { function createNoteEntry(comments, id, pos, filterOn, risultato) {
var idref = comments.IdRiferimento 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 + '">'); 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(risultato){
if (isCommentInResult(idref)) { 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 + '">'); 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 + '">');
}else{ noteAdded = true;
}else{
if (filterOn) { if (filterOn) {
noteCard.css("display", "none"); noteCard.css("display", "none");
} else { } else {
@ -1280,6 +1271,7 @@ $(document).ready(function() {
} }
collapseCardBody.appendTo(collapseNote); collapseCardBody.appendTo(collapseNote);
collapseNote.appendTo(noteCard); collapseNote.appendTo(noteCard);
return noteCard; return noteCard;
} }