|
Lines 847-853
Link Here
|
| 847 |
opt.prop('selected', true); |
847 |
opt.prop('selected', true); |
| 848 |
} |
848 |
} |
| 849 |
opt.attr("value", filter.search_filter_id); |
849 |
opt.attr("value", filter.search_filter_id); |
| 850 |
opt.attr("title", "Query:" + filter.filter_query + " Limit:"+filter.filter_limits); |
850 |
opt.attr("title", "Query:" + filter.query + " Limit:"+filter.limits); |
| 851 |
opt.text(filter.name); |
851 |
opt.text(filter.name); |
| 852 |
opt.data("filter", filter); |
852 |
opt.data("filter", filter); |
| 853 |
}); |
853 |
}); |
|
Lines 881-888
Link Here
|
| 881 |
contentType: "application/json", |
881 |
contentType: "application/json", |
| 882 |
data: JSON.stringify({ |
882 |
data: JSON.stringify({ |
| 883 |
name: name, |
883 |
name: name, |
| 884 |
filter_query: JSON.stringify(search_result.query_json), |
884 |
query: JSON.stringify(search_result.query_json), |
| 885 |
filter_limits: JSON.stringify(search_result.limit_json), |
885 |
limits: JSON.stringify(search_result.limit_json), |
| 886 |
opac: opac, |
886 |
opac: opac, |
| 887 |
staff_client: staff, |
887 |
staff_client: staff, |
| 888 |
}) |
888 |
}) |
| 889 |
- |
|
|