mirror of
https://github.com/rickbarrette/redmine_qbo.git
synced 2025-11-08 17:04:23 -05:00
14 lines
305 B
JavaScript
14 lines
305 B
JavaScript
$(function() {
|
|
$("input#issue_customer").autocomplete({
|
|
source: function (request, response) {
|
|
$.ajax({
|
|
url: "/filter_vehicles_by_customer",
|
|
type: "GET",
|
|
data: {
|
|
selected_customer: $("input#issue_customer").val();
|
|
}
|
|
});
|
|
});
|
|
});
|
|
});
|