2010-05-10 22:02:11 -07:00
|
|
|
/*
|
|
|
|
|
* file: search.js
|
|
|
|
|
|
|
|
|
|
* Powers AJAX search of records in the CMC Sales System.
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
$(function() {
|
2010-05-12 19:21:29 -07:00
|
|
|
|
2010-05-30 22:54:44 -07:00
|
|
|
$("#ajaxLoading").hide();
|
2010-05-19 22:15:57 -07:00
|
|
|
|
|
|
|
|
|
2010-05-30 22:54:44 -07:00
|
|
|
$("#ajaxLoading").bind("ajaxSend", function() {
|
2010-05-19 22:15:57 -07:00
|
|
|
$(this).show();
|
|
|
|
|
}).bind("ajaxComplete", function() {
|
|
|
|
|
$(this).hide();
|
|
|
|
|
});
|
2010-05-12 19:21:29 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2010-05-30 22:54:44 -07:00
|
|
|
$("#dialogDiv").hide();
|
2010-05-12 19:21:29 -07:00
|
|
|
|
|
|
|
|
|
2010-05-10 22:02:11 -07:00
|
|
|
|
2010-05-30 22:54:44 -07:00
|
|
|
$("#dialogDiv").dialog({
|
2010-05-12 19:21:29 -07:00
|
|
|
autoOpen: false,
|
2010-05-12 19:35:45 -07:00
|
|
|
width: 900,
|
2010-05-12 19:21:29 -07:00
|
|
|
modal: true
|
|
|
|
|
|
2010-05-30 22:54:44 -07:00
|
|
|
});
|
2010-05-12 19:21:29 -07:00
|
|
|
|
|
|
|
|
|
2010-05-30 22:54:44 -07:00
|
|
|
$("#searchLink").click(function() {
|
2010-05-12 19:21:29 -07:00
|
|
|
|
2010-05-30 22:54:44 -07:00
|
|
|
$("#dialogDiv").dialog('open');
|
|
|
|
|
return false;
|
|
|
|
|
});
|
2010-05-12 19:21:29 -07:00
|
|
|
|
2010-05-10 22:02:11 -07:00
|
|
|
$("#searchButton").button().click(function() {
|
|
|
|
|
|
|
|
|
|
doSearch();
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
2010-05-30 22:54:44 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
$("#dialogDiv").bind("dialogclose", function() {
|
|
|
|
|
$("#results").empty();
|
|
|
|
|
})
|
2010-05-10 22:02:11 -07:00
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function doSearch() {
|
|
|
|
|
$.post("/enquiries/doSearch", $("#searchString").serialize(), function(data) {
|
|
|
|
|
$("#results").html(data);
|
|
|
|
|
});
|
2010-05-12 19:21:29 -07:00
|
|
|
}
|
2010-05-10 22:02:11 -07:00
|
|
|
|