我正在使用以下代码在编辑和添加表单中创建自动完成扩展程序。当我使用$(e).autocomplete({});时,编辑表单不显示。请帮我解决这个问题..
{ name: 'FLD_IP_ADDR', index: 'FLD_IP_ADDR', width: 120, editable: true, edittype: "text", formoptions: { rowpos: 1, colpos: 3, elmprefix: " <span class='required'></span> " },
editoptions: {
dataInit: function (e) {
$(e).autocomplete({
source: ["c++", "java", "php", "coldfusion", "javascript", "asp", "ruby"]
});
}
},
editrules: {
edithidden: true,
required: false
},
edittype: "text",
hidden: true
},
答案 0 :(得分:0)
我刚刚添加了这个,它现在正在为我工作
<style type="text/css">
.ui-front {
z-index: 1000;
}
</style>