我尝试在ASP.NETMVC3中使用带有下拉列表的JQueryUIAutocomplete(Combobox)。
下面是我的视图中的相关代码部分:
<div class="editor-label">
@Html.LabelFor(model => model.MerchantID, "Merchant")
</div>
<div class="editor-field">
@Html.DropDownList("MerchantID", null, String.Empty, new { @class = "combobox" })
@Html.ValidationMessageFor(model => model.MerchantID)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.FinancialAccountID, "FinancialAccount")
</div>
<div class="editor-field">
@Html.DropDownList("FinancialAccountID", null, String.Empty, new { @class = "combobox" })
@Html.ValidationMessageFor(model => model.FinancialAccountID)
</div>
字符串
(有4-10个下拉列表。)
下面是JavaScript文件的内容,基本上是从jquery-ui网站复制过来的:
(function ($) {
$.widget("ui.combobox", {
_create: function () {
var input,
self = this,
select = this.element.hide(),
selected = select.children(":selected"),
value = selected.val() ? selected.text() : "",
wrapper = this.wrapper = $("<span>")
.addClass("ui-combobox")
.insertAfter(select);
input = $("<input>")
.appendTo(wrapper)
.val(value)
.addClass("ui-state-default ui-combobox-input")
.autocomplete({
delay: 0,
minLength: 0,
source: function (request, response) {
var matcher = new RegExp($.ui.autocomplete.escapeRegex(request.term), "i");
response(select.children("option").map(function () {
var text = $(this).text();
if (this.value && (!request.term || matcher.test(text)))
return {
label: text.replace(
new RegExp(
"(?![^&;]+;)(?!<[^<>]*)(" +
$.ui.autocomplete.escapeRegex(request.term) +
")(?![^<>]*>)(?![^&;]+;)", "gi"
), "<strong>$1</strong>"),
value: text,
option: this
};
}));
},
select: function (event, ui) {
ui.item.option.selected = true;
self._trigger("selected", event, {
item: ui.item.option
});
},
change: function (event, ui) {
if (!ui.item) {
var matcher = new RegExp("^" + $.ui.autocomplete.escapeRegex($(this).val()) + "$", "i"),
valid = false;
select.children("option").each(function () {
if ($(this).text().match(matcher)) {
this.selected = valid = true;
return false;
}
});
if (!valid) {
// remove invalid value, as it didn't match anything
$(this).val("");
select.val("");
input.data("autocomplete").term = "";
return false;
}
}
}
})
.addClass("ui-widget ui-widget-content ui-corner-left");
input.data("autocomplete")._renderItem = function (ul, item) {
return $("<li></li>")
.data("item.autocomplete", item)
.append("<a>" + item.label + "</a>")
.appendTo(ul);
};
$("<a>")
.attr("tabIndex", -1)
.attr("title", "Show All Items")
.appendTo(wrapper)
.button({
icons: {
primary: "ui-icon-triangle-1-s"
},
text: false
})
.removeClass("ui-corner-all")
.addClass("ui-corner-right ui-combobox-toggle")
.click(function () {
// close if already visible
if (input.autocomplete("widget").is(":visible")) {
input.autocomplete("close");
return;
}
// work around a bug (likely same cause as #5265)
$(this).blur();
// pass empty string as value to search for, displaying all results
input.autocomplete("search", "");
input.focus();
});
},
destroy: function () {
this.wrapper.remove();
this.element.show();
$.Widget.prototype.destroy.call(this);
}
});
})(jQuery);
$(function () {
$(".combobox").combobox();
});
型
我遇到的问题是,似乎没有对输入的值进行任何验证。例如,如果我将其留空并提交,则不会出现错误,表明输入了无效信息。但是,如果我注解掉combobox()调用以禁用combobox功能,验证就可以正常工作。
我已经在stackoverflow上搜索了这个问题,但我似乎找不到任何与此特定情况相匹配的内容。
编辑:我发现验证确实会发生,但只有在我在提交之前单击另一个字段时才会发生,这很奇怪。因此,如果我在组合框中输入空白文本,然后单击文本字段,然后提交,它会正常工作(显示验证错误)。但如果我在组合框中输入空白文本并提交,它不会显示验证错误。有什么想法吗
1条答案
按热度按时间jexiocij1#
好了,我找到问题了。
当按下提交按钮时,JavaScript验证会在自动完成JQuery之前被调用,当检测到错误输入时,自动完成JQuery会清除所选项目。这就是我的意思:
字符串
因此,我明确了用户一开始输入就选择的项,并且只有在选择了有效项时才重新选择。
型