在一个 jquery 对话框中,我想使用 jqueryUI 的 jquery 自动完成功能。
然后我在我的控制器中准备了一个动作(我正在使用 ASP.NET MVC2),如下所示
public ActionResult GetForos(string startsWith, int pageSize)
{
// get records from underlying store
int totalCount = 0;
string whereClause = "Foro Like '" + startsWith + "%'";
List<Foro> allForos = _svc.GetPaged(whereClause, "Foro", 0, pageSize, out totalCount);
//transform records in form of Json data
List<ForoModelWS> foros = new List<ForoModelWS>();
foreach ( Foro f in allForos)
foros.Add( new ForoModelWS() { id= Convert.ToString(f.ForoId),
text= f.Foro + ", Sezione: " + f.Sezione + ", " + f.AuthorityIdSource.Name });
return Json(foros);
}
ForoModelWS 类是一个简单的类,仅用于保存应以 json 格式传输的数据。这里是
public class ForoModelWS
{
public string id;
public string text;
}
在客户端,我有以下 jquery 代码:
<input id="theForo" />
<script type="text/javascript">
$(document).ready(function() {
$("#theForo").autocomplete({
source: function(request, response) {
$.ajax({
type: "post",
url: "/Foro/GetForos",
dataType: "json",
data: {
startsWith: request.term,
pageSize: 15
},
success: function(data) {
response($.map(data, function(item) {
return {
label: item.text,
value: item.text
}
}))
}
})
},
minLength: 2,
select: function(event, ui) {
},
open: function() {
$(this).removeClass("ui-corner-all").addClass("ui-corner-top");
},
close: function() {
$(this).removeClass("ui-corner-top").addClass("ui-corner-all");
}
});
});
</script>
但是没有出现带有建议的滑动窗口。如果我在响应函数中添加警报,我可以看到正确的数据。
我错过了什么吗?
感谢您的帮助
第一次编辑:此外,如何更改代码以使用返回列表中所选元素的“id”属性?
第二次编辑:我用 Chrome 开发者工具检查了更多,我发现当自动完成启动时会出现一些错误。以下:
Uncaught TypeError: Cannot call method 'zIndex' of undefined @ _assets/js/jquery-ui-1.8.4.custom.min.js:317
Uncaught TypeError: Cannot read property 'element' of undefined @ _assets/js/jquery-ui-1.8.4.custom.min.js:321
Uncaught TypeError: Cannot read property 'element' of undefined @ _assets/js/jquery-ui-1.8.4.custom.min.js:320
似乎自动完成插件在尝试将滑动建议的 z-Index 设置为 1 提升其容器时找不到元素。当 jquery UI Dialog 打开时出现第一个错误。自动完成的输入位于 jquery 对话框内的 jquery 选项卡内
第三次编辑:我正在添加 HTML 标记以完成
<td width="40%">
<%= Html.LabelFor(model => model.ForoID)%>
<br />
<%= Html.HiddenFor(model => model.ForoID) %>
<input id="theForo" />
<%= Html.ValidationMessageFor(model => model.ForoID, "*")%>
</td>