我尝试了将“自动完成”重命名为“ui-autocomplete”的解决方案(使用 JQueryUI 1.10.0、JQuery 1.8.3),但仍然收到以下错误:
TypeError: $(...).autocomplete(...).data(...) 未定义
} }).data('ui-autocomplete')._renderItem = function (ul, item) {
它在 1.10.0 中定义,但我需要覆盖:
_renderItem: function( ul, item ) {
return $( "<li>" )
.append( $( "<a>" ).text( item.label ) )
.appendTo( ul );
},
这是我的整个代码:
var ajaxCall_QuickSearchCompanyId;
$('#QuickSearchCompanyId').autocomplete({
minLength: 2, delay: 300, source: function (request, response) {
if (ajaxCall_QuickSearchCompanyId) {
ajaxCall_QuickSearchCompanyId.abort();
}
ajaxCall_QuickSearchCompanyId = $.ajax({
url: '/Advertiser/Autocompleter/CompaniesDetailed', dataType: 'json',
data: { q: request.term },
success:
function (data) {
$('#QuickSearchCompanyId').removeClass('ui-autocomplete-loading');
response($.map(data, function (item) {
return {
label: item.ID,
value: item.Name,
subsidiaries: item.Subsidiaries,
category: item.Category,
url: (item.URL == null) ? '' : item.URL,
parentName: item.ParentName,
isReported: item.IsReported
}
}));
}
});
}
}).data('ui-autocomplete')._renderItem = function (ul, item) {
String.prototype.chunk = function (n) {
var ret = []; for (var i = 0, len = this.length; i < len; i += n) { ret.push(this.substr(i, n)); }
return ret;
}; ul.attr('id', 'ul_QuickSearchCompanyId'); return $('<li></li>')
.data('ui-autocomplete-item', item)
.append("<a style='padding: 0px;'><div style='margin-bottom: 0px; width: 450px;'><table style='height: 100%; width: 450px; font-family: Calibri; font-size: 10pt;'><tr><td style='width: 280px; border-right: solid 1px Black; padding: 0px; color: " + ((item.isReported != true) ? 'Gray' : 'Black') + "; font-style: " + ((item.isReported != true) ? 'italic' : 'none') + ";'>" + ((item.parentName != '[[root]]') ? (item.parentName + ': ') : '') + item.value + "</td><td align='right' valign='top' style='width: 150px; padding: 0px; color: " + ((item.isReported != true) ? 'Gray' : 'Black') + "; font-style: " + ((item.isReported != true) ? 'italic' : 'none') + ";'>" + item.category + "<br /></td></tr></table></div></a>")
.appendTo(ul);
};
任何想法都会非常受欢迎。