我建议您为多选创建一个自定义 JSControl。在这个多选控件中,您可以轻松处理您的条件。您可以在您的 JqueryUI 自动完成文件之后的 Head 标记上添加此 JSControlfile。
创建自定义 JSControl 后,只需将此控件添加到页面加载所需的位置。铰孔部分由控制本身完成。
控件应如下所示:
// Constructor of the control
function AutoCompleteMultiSelect(controlId,label,containerID,tabIndex){
this.ControlID = controlId;
this.Label = label;
this.ContainerID = containerID;
this.TabIndex = tabIndex;
this.RegisteredCallbacks = Object();
}
// function for registering event callback
AutoCompleteMultiSelect.prototype.RegisterEventCallback = function (event, callback) {
this.RegisteredCallbacks[event] = callback;
}
// function to add the control on the given container.
AutoCompleteMultiSelect.prototype.AddAutoCompleteMultiSelect = function ()
{
var tabIndex = 'tabindex="' + this.TabIndex + '"';
var controlHTML = '<div>';
controlHTML += '<h2> ' + this.Label+ ' </h2>';
controlHTML += '<div>';
controlHTML += '<span>';
controlHTML += '<input '+ tabIndex +' type="text" id="' + this.ControlID + '" name="' + this.Label+ '" />';
controlHTML += '<input type="hidden" id="' + this.ControlID + '_Value" name="' + this.displayName + '" value="0"/>';
controlHTML += '</span></div></div>';
// Add the control into container
$(controlHTML).appendTo('#' + this.ContainerID);
var that = this;
that.loadLookUp();
$("#" + this.ControlID).blur(function () {
if (that.RegisteredCallbacks['onblur'] != undefined) {
that.RegisteredCallbacks['onblur'](this.ControlID);
}
});
}
AutoCompleteMultiSelect.prototype.loadLookUp = function () {
$("#" + this.ControlID).autocomplete({
minLength: 2,
source: function (request, response) {
$.ajax({
type: "GET",
// your service call
success: function (data) {
response($.map(data.d, function (item) {
return {
label: item.Name,
value: item.SQLPrimarykey
};
}));
},
error: function (XMLHttpRequest, textStatus, errorThrown) {
// your error come
}
},
focus: function () {
return false;
},
select: function (event, ui) {
var terms = split(this.value);
var length = terms.length
if (terms.indexOf(ui.item.label) == -1) {
terms.pop();
terms.push(ui.item.label);
terms.push("");
this.value = terms.join(", ");
var value = this.value.substring(0, this.value.lastIndexOf(','));
$("#" + this.ControlID).val(value);
//Handle Values
var valuesStr = $("#" + this.ControlID+ "_Value").val();
if (length == 1) {
valuesStr = "";
}
var values;
if (valuesStr != "") {
values = split(valuesStr);
}
else {
values = new Array();
}
values.push(ui.item.value);
values.push("");
valuesStr = values.join(", ");
valuesStr = valuesStr.substring(0, valuesStr.lastIndexOf(','));
$("#" + this.ControlID+ "_Value").val(valuesStr);
} else {
var sv = $("#" + this.ControlID).val();
sv = sv.substring(0, sv.lastIndexOf(','));
$("#" + this.ControlID).val(sv);
var valuesStr = $("#" + this.ControlID+ "_Value").val();
valuesStr = valuesStr.substring(0, valuesStr.lastIndexOf(','));
$("#" + this.ControlID+ "_Value").val(valuesStr);
}
return false; // Prevent the widget from inserting the value.
}
});
$("#" + this.ControlID).bind("keydown", function (event) {
if (event.keyCode === $.ui.keyCode.TAB &&
$(this).data("autocomplete").menu.active) {
event.preventDefault();
}
})
function split(val) {
return val.split(/,\s*/);
}
function extractLast(term) {
return split(term).pop();
}
}
现在您可以在您的 HTML 页面上添加您的控件。
var control = new AutoCompleteMultiSelect(yourControlID,yourControlLabel,yourContainerName,tabIndexoftheControl);
control.AddAutoCompleteMultiSelect();
您可以多次将此控件添加到您的页面。
当此控件 onchange 事件触发并且值和文本设置为 input 和 hiddenField 时。
你可以像这样获得价值和文字。
var value = $("#yourControlName_Value").val();
var text = $("#yourControlName").val();
并将此值用于进一步使用。
谢谢,