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
|
||||||
|
|
||||||
|
@ -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-]")
|
||||||
|
@ -818,12 +820,12 @@ $(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);
|
||||||
|
@ -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