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
|
||||
|
||||
filtro['tipoClausola'] = tipoClausola
|
||||
var clausolaquery = $("#searchValue").val()
|
||||
filtro['query'] = clausolaquery.trim();
|
||||
|
||||
// checkedField = $('input[name=oggetto]:checked', '#filterform').val();
|
||||
//
|
||||
// filtro['lemma_forma'] = checkedField
|
||||
// eventualmente le 2 seguenti non funzionano Nicola
|
||||
// checkedField = $('#lemma_forma').val();
|
||||
// filtro['lemma_forma'] = checkedField
|
||||
|
||||
condizioniFiltro['filtro-' + filterconditions] = filtro
|
||||
|
||||
|
@ -576,7 +578,7 @@ $(document).ready(function() {
|
|||
}
|
||||
)
|
||||
|
||||
function espressioneLogica(condizioniLogiche){
|
||||
function espressioneLogica(condizioniLogiche) {
|
||||
//definizione struttura della query
|
||||
var EsprLogica = ""
|
||||
filters = $("[id^=filtro-]")
|
||||
|
@ -818,12 +820,12 @@ $(document).ready(function() {
|
|||
|
||||
//$(":radio").prop("checked", false);
|
||||
$(":checkbox").prop("checked", false);
|
||||
//
|
||||
// for (radio in radios) {
|
||||
// if (radios[radio].val == checkedField) {
|
||||
// radios[radio].checked = true;
|
||||
// }
|
||||
// }
|
||||
//
|
||||
// for (radio in radios) {
|
||||
// if (radios[radio].val == checkedField) {
|
||||
// radios[radio].checked = true;
|
||||
// }
|
||||
// }
|
||||
|
||||
element.attr('id', 'cg-' + size);
|
||||
element.find('.remove-filter').attr('target', 'cg-' + size);
|
||||
|
@ -938,28 +940,28 @@ $(document).ready(function() {
|
|||
|
||||
});
|
||||
//Cesare
|
||||
$( function() {
|
||||
$( "#filtri" ).sortable({
|
||||
//items: "div:(.ui-state-enabled)"
|
||||
cursor: 'move',
|
||||
$(function() {
|
||||
$("#filtri").sortable({
|
||||
//items: "div:(.ui-state-enabled)"
|
||||
cursor: 'move',
|
||||
update: function() {
|
||||
|
||||
myfilters=$("[id^=filtro-]")
|
||||
myfilters = $("[id^=filtro-]")
|
||||
|
||||
$("[id^=filtro-]").each(function(index, element) {
|
||||
var mx = $( this ).find('#andor');
|
||||
if (index==0)
|
||||
var mx = $(this).find('#andor');
|
||||
if (index == 0)
|
||||
mx.attr('style', "display:none;")
|
||||
else
|
||||
mx.attr('style', "display:block;")
|
||||
|
||||
|
||||
//console.log($( this ));
|
||||
});
|
||||
//console.log($( this ));
|
||||
});
|
||||
|
||||
|
||||
}
|
||||
});
|
||||
} );
|
||||
});
|
||||
});
|
||||
|
||||
});
|
Loading…
Reference in New Issue