9 lines
369 B
JavaScript
9 lines
369 B
JavaScript
$(function () {
|
|
var autoClientCtrl = FastVue.autocomplete(document.getElementById('ClientId'), {
|
|
lookup: ylotc.clients, nameField: 'Name', valueField: 'id', searchField: ['Name', 'Code', 'PinYin'],
|
|
onSelect: function (data) {
|
|
console.log(data);
|
|
console.log('#ClientId Value:' + $('#ClientId').val());
|
|
}
|
|
});
|
|
}); |