使用 jquery 自动完成,如何测试解析函数内的当前对象?

发布于 2024-12-09 12:03:44 字数 990 浏览 1 评论 0原文

我有一些 jquery 自动完成代码,如下所示:

$('[name$=_ID]').autocomplete('<%=Url.Action("GetMatchingParts", "ServiceReport") %>',     {
            minChars: 3,
            dataType: 'json',
            parse: function(data) {
                var rows = new Array();
                for (var i = 0; i < data.length; i++) {
                    rows[i] = { data: data[i], value: data[i].ID, result: data[i].ID };
                }
                return rows;
            },
            formatItem: function(row) {
                return row.ID + "<br />" + row.Name;
            },
            max: 100,
            delay: 500,
            cacheLength: 1,
            matchContains: true,
            autofill: true,
            selectFirst: false,
            highlight: false,
            multiple: false
        });  

我在页面上有几个以 _ID 结尾的文本框,需要使用自动完成功能。根据页面上发生的其他事情,我有时会将单个文本框的 readonly 属性设置为 true。

当特定文本框的 readonly 属性设置为 true 时,如何禁用自动完成或返回 0 行?

I have some jquery autocomplete code like that below:

$('[name$=_ID]').autocomplete('<%=Url.Action("GetMatchingParts", "ServiceReport") %>',     {
            minChars: 3,
            dataType: 'json',
            parse: function(data) {
                var rows = new Array();
                for (var i = 0; i < data.length; i++) {
                    rows[i] = { data: data[i], value: data[i].ID, result: data[i].ID };
                }
                return rows;
            },
            formatItem: function(row) {
                return row.ID + "<br />" + row.Name;
            },
            max: 100,
            delay: 500,
            cacheLength: 1,
            matchContains: true,
            autofill: true,
            selectFirst: false,
            highlight: false,
            multiple: false
        });  

I have several text boxes on the page that end with _ID and need to use the autocomplete. Depending on other things happening on the page, I will sometimes set the readonly attribute to true for a single text box.

How can I disable the autocomplete or return 0 rows when the readonly attribute is set to true for a specific text box?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你爱我像她 2024-12-16 12:03:44

当您设置“readOnly”时,添加以下语句。

  $( "#yourControlID" ).autocomplete({ disabled: true });

或者

$( "#yourControlID" ).autocomplete( "disable" );

By the time you set 'readOnly', add the below statement.

  $( "#yourControlID" ).autocomplete({ disabled: true });

Or

$( "#yourControlID" ).autocomplete( "disable" );
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文