|
需要自己写点 JS 代码,设 autocomplete 弹出的层的 z-index 比所在 Window 控件的高点就行了。
代码:
- $('#' + textbox2ID + ' input').autocomplete({
- minLength: 2,
- source: function (request, response) {
- var term = request.term;
- if (term in cache) {
- response(cache[term]);
- return;
- }
- $.getJSON("search.ashx", request, function (data, status, xhr) {
- cache[term] = data;
- response(data);
- });
- },
- open: function (event, ui) {
- var inputEl = $(this);
- var wndZIndex = parseInt(inputEl.parents('.x-window').css('z-index'), 10);
- inputEl.autocomplete('widget').css('z-index', wndZIndex + 1);
- }
- });
复制代码
效果:
|
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
|