Это полный набор изменений, которые я внес в выбранный плагин (версия jquery), чтобы решить эту проблему
Chosen.prototype.choice_build = function(item) {
this.new_term_to_be_added = null;
// ....
};
Chosen.prototype.no_results = function(terms) {
// ....
no_results_html.find("span").first().html(terms);
this.new_term_to_be_added = terms;
return this.search_results.append(no_results_html);
};
Chosen.prototype.keydown_checker = function(evt) {
// ...
case 13:
if(this.new_term_to_be_added != null && this.options.addNewElementCallback != null) {
var newElement = this.options.addNewElementCallback(this.new_term_to_be_added);
if(newElement!=null && newElement.length == 1) {
// KEY TO SOLVING THIS PROBLEM
this.result_highlight = newElement;
// This will automatically trigger the change/select events also.
// Nothing more required.
this.result_select(evt);
}
this.new_term_to_be_added = null;
}
evt.preventDefault();
break;
// ...
};
this.new_term_to_be_added поддерживает текущую типизированную строку, которая не входит в число предопределенных параметров.
options.addNewElementCallback - это обратный вызов вызывающей функции, который позволяет им обрабатывать его (отправлять на сервер и т. Д.), И он должен быть синхронным. Ниже скелет:
var addTagCallback = function(tagText) {
var newElement = null;
$.ajax({url : that.actionUrl,
async : false,
dataType: "json",
data : { // ....},
success : function(response) {
if(response) {
$('#tagSelection').append(
$('<option></option>')
.val(data.Item.Id)
.html(data.Item.Value)
.attr("selected", "selected"));
$("#tagSelection").trigger("liszt:updated");
// Get the element - will necessarily be the last element - so the following selector will work
newElement = $("#tagSelection_chzn li#tagSelection_chzn_o_" + ($("#tagSelection option").length - 1));
} else {
// Handle Error
}
}});
return newElement;
};
newElement - это элемент jquery - последний добавленный объект li в список опций.
Делая this.result_highlight = newElement; и this.result_select (evt); Я говорю плагину Chosen, чтобы выбрать это. Это работает, будь то одиночный выбор или множественный выбор. Решение Rifky будет работать только для одного выбора.