modifiche a querymanager come da sckype
This commit is contained in:
parent
8a1829a834
commit
2c76746117
|
@ -513,10 +513,12 @@ $(document).ready(function() {
|
||||||
//aggiungo il filtro a quelli esistenti nel json
|
//aggiungo il filtro a quelli esistenti nel json
|
||||||
|
|
||||||
filtro['tipoClausola'] = tipoClausola
|
filtro['tipoClausola'] = tipoClausola
|
||||||
|
var clausolaquery = $("#searchValue").val()
|
||||||
|
filtro['query'] = clausolaquery.trim();
|
||||||
|
|
||||||
// checkedField = $('input[name=oggetto]:checked', '#filterform').val();
|
// eventualmente le 2 seguenti non funzionano Nicola
|
||||||
//
|
// checkedField = $('#lemma_forma').val();
|
||||||
// filtro['lemma_forma'] = checkedField
|
// filtro['lemma_forma'] = checkedField
|
||||||
|
|
||||||
condizioniFiltro['filtro-' + filterconditions] = filtro
|
condizioniFiltro['filtro-' + filterconditions] = filtro
|
||||||
|
|
||||||
|
@ -559,12 +561,12 @@ $(document).ready(function() {
|
||||||
condizioniFiltro['filtro-1'] = filtro;
|
condizioniFiltro['filtro-1'] = filtro;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//definizione struttura della query
|
//definizione struttura della query
|
||||||
|
|
||||||
condizioniFiltro = espressioneLogica(condizioniFiltro);
|
condizioniFiltro = espressioneLogica(condizioniFiltro);
|
||||||
// fine definizione struttura
|
// fine definizione struttura
|
||||||
|
|
||||||
spquery = buildSQ(condizioniFiltro)
|
spquery = buildSQ(condizioniFiltro)
|
||||||
queryFields = [];
|
queryFields = [];
|
||||||
for (var i in spquery.variables) {
|
for (var i in spquery.variables) {
|
||||||
|
@ -576,7 +578,7 @@ $(document).ready(function() {
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
function espressioneLogica(condizioniLogiche){
|
function espressioneLogica(condizioniLogiche) {
|
||||||
//definizione struttura della query
|
//definizione struttura della query
|
||||||
var EsprLogica = ""
|
var EsprLogica = ""
|
||||||
filters = $("[id^=filtro-]")
|
filters = $("[id^=filtro-]")
|
||||||
|
@ -595,7 +597,7 @@ $(document).ready(function() {
|
||||||
condizioniLogiche['EsprLogica'] = EsprLogica.split(" ")
|
condizioniLogiche['EsprLogica'] = EsprLogica.split(" ")
|
||||||
return condizioniLogiche;
|
return condizioniLogiche;
|
||||||
}
|
}
|
||||||
|
|
||||||
async function execMySparqlQuery(spQuery) {
|
async function execMySparqlQuery(spQuery) {
|
||||||
$("#loader").show();
|
$("#loader").show();
|
||||||
//alert(new sparqlGenerator().stringify(spQuery));
|
//alert(new sparqlGenerator().stringify(spQuery));
|
||||||
|
@ -818,13 +820,13 @@ $(document).ready(function() {
|
||||||
|
|
||||||
//$(":radio").prop("checked", false);
|
//$(":radio").prop("checked", false);
|
||||||
$(":checkbox").prop("checked", false);
|
$(":checkbox").prop("checked", false);
|
||||||
//
|
//
|
||||||
// for (radio in radios) {
|
// for (radio in radios) {
|
||||||
// if (radios[radio].val == checkedField) {
|
// if (radios[radio].val == checkedField) {
|
||||||
// radios[radio].checked = true;
|
// radios[radio].checked = true;
|
||||||
// }
|
// }
|
||||||
// }
|
// }
|
||||||
|
|
||||||
element.attr('id', 'cg-' + size);
|
element.attr('id', 'cg-' + size);
|
||||||
element.find('.remove-filter').attr('target', 'cg-' + size);
|
element.find('.remove-filter').attr('target', 'cg-' + size);
|
||||||
element.find('.set-filter').attr('targetfilter', 'cg-' + size);
|
element.find('.set-filter').attr('targetfilter', 'cg-' + size);
|
||||||
|
@ -938,28 +940,28 @@ $(document).ready(function() {
|
||||||
|
|
||||||
});
|
});
|
||||||
//Cesare
|
//Cesare
|
||||||
$( function() {
|
$(function() {
|
||||||
$( "#filtri" ).sortable({
|
$("#filtri").sortable({
|
||||||
//items: "div:(.ui-state-enabled)"
|
//items: "div:(.ui-state-enabled)"
|
||||||
cursor: 'move',
|
cursor: 'move',
|
||||||
update: function() {
|
update: function() {
|
||||||
|
|
||||||
myfilters=$("[id^=filtro-]")
|
myfilters = $("[id^=filtro-]")
|
||||||
|
|
||||||
$("[id^=filtro-]").each(function(index, element) {
|
$("[id^=filtro-]").each(function(index, element) {
|
||||||
var mx = $( this ).find('#andor');
|
var mx = $(this).find('#andor');
|
||||||
if (index==0)
|
if (index == 0)
|
||||||
mx.attr('style', "display:none;")
|
mx.attr('style', "display:none;")
|
||||||
else
|
else
|
||||||
mx.attr('style', "display:block;")
|
mx.attr('style', "display:block;")
|
||||||
|
|
||||||
|
|
||||||
//console.log($( this ));
|
//console.log($( this ));
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
} );
|
});
|
||||||
|
|
||||||
});
|
});
|
Loading…
Reference in New Issue