collect search conditions for searching
This commit is contained in:
parent
73a54eb3bf
commit
059d44e9a9
|
@ -122,7 +122,7 @@
|
||||||
</fieldset>
|
</fieldset>
|
||||||
</div>
|
</div>
|
||||||
<div class="fl w-100 w-70-ns ph1">
|
<div class="fl w-100 w-70-ns ph1">
|
||||||
<input id="name"
|
<input id="searchValue"
|
||||||
class="input-reset ba b--black-20 pa2 mb2 db w-100"
|
class="input-reset ba b--black-20 pa2 mb2 db w-100"
|
||||||
type="text" aria-describedby="name-desc" name="query"
|
type="text" aria-describedby="name-desc" name="query"
|
||||||
value="">
|
value="">
|
||||||
|
|
|
@ -529,6 +529,26 @@ $(document).ready(function() {
|
||||||
return true
|
return true
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
jQuery(document).delegate('#grammarbutton', 'click', function(e) {
|
||||||
|
|
||||||
|
alert('Update not yet implemented, in progress...')
|
||||||
|
var size = Object.keys(condizioniFiltro).length;
|
||||||
|
if (size == 0){
|
||||||
|
var clausola = $("#searchValue").val()
|
||||||
|
clausola = clausola.trim();
|
||||||
|
if (clausola == "" || clausola == ' '){
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
alert (clausola);
|
||||||
|
condizioniFiltro['filtro-1'] = "query="+clausola;
|
||||||
|
}
|
||||||
|
// condizioniFiltro contiene le condizioni nella forma "clausola=valore"
|
||||||
|
return true
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
function AggiornaFiltro(filtroId) {
|
function AggiornaFiltro(filtroId) {
|
||||||
|
|
Loading…
Reference in New Issue