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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$("#dialogDiv").hide();
|
|
|
|
|
|
|
|
|
|
|
2010-05-10 22:02:11 -07:00
|
|
|
|
2010-05-12 19:21:29 -07:00
|
|
|
$("#dialogDiv").dialog({
|
|
|
|
|
autoOpen: false,
|
2010-05-12 19:35:45 -07:00
|
|
|
width: 900,
|
|
|
|
|
height: 900,
|
2010-05-12 19:21:29 -07:00
|
|
|
modal: true
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$("#searchLink").click(function() {
|
|
|
|
|
|
|
|
|
|
$("#dialogDiv").dialog('open');
|
|
|
|
|
return false;
|
|
|
|
|
});
|
|
|
|
|
|
2010-05-10 22:02:11 -07:00
|
|
|
$("#searchButton").button().click(function() {
|
|
|
|
|
|
|
|
|
|
doSearch();
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function doSearch() {
|
|
|
|
|
$.post("/enquiries/doSearch", $("#searchString").serialize(), function(data) {
|
|
|
|
|
$("#results").html(data);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2010-05-12 19:21:29 -07:00
|
|
|
function searchDialog() {
|
|
|
|
|
$("")
|
|
|
|
|
}
|
2010-05-10 22:02:11 -07:00
|
|
|
|
|
|
|
|
|