jquery - 使 MVC 4 Razor 下拉列表可编辑的问题

标签 jquery

mvc razor editable DropDownList

我正在使用上面的库使下拉菜单在 MVC Razor 中可编辑,但它显示下拉值而不是文本,我需要显示下拉文本。任何帮助将不胜感激。

最佳答案

我使用以下链接使下拉菜单在 MVC Razor 中可编辑,并进行一些更改

http://jqueryui.com/autocomplete/#combobox

这是使用的代码

(function ($) {
    $.widget("custom.combobox", {
        _create: function () {
            this.wrapper = $("<span>")
              .addClass("custom-combobox")
              .insertAfter(this.element);

            this.element.hide();
            this._createAutocomplete();
            this._createShowAllButton();
        },

        _createAutocomplete: function () {
            var selected = this.element.children(":selected"),
              value = selected.val() ? selected.text() : "";

            this.input = $("<input>")
              .appendTo(this.wrapper)
              .val(value)
              .attr("title", "")
              .addClass("custom-combobox-input ui-widget ui-widget-content ui-state-default ui-corner-left")
              .autocomplete({
                  delay: 0,
                  minLength: 0,
                  source: $.proxy(this, "_source")
              })
              .tooltip({
                  tooltipClass: "ui-state-highlight"
              });

            this._on(this.input, {
                autocompleteselect: function (event, ui) {
                    ui.item.option.selected = true;
                    this._trigger("select", event, {
                        item: ui.item.option                           
                    });                       
                },

                autocompletechange: "_removeIfInvalid"
            });
        },

        _createShowAllButton: function () {
            var input = this.input,
              wasOpen = false;

            $("<a>")
              .attr("tabIndex", -1)
              .attr("title", "Show All Items")
              .tooltip()
              .appendTo(this.wrapper)
              .button({
                  icons: {
                      primary: "ui-icon-triangle-1-s"
                  },
                  text: false
              })
              .removeClass("ui-corner-all")
              .addClass("custom-combobox-toggle ui-corner-right")
              .mousedown(function () {
                  wasOpen = input.autocomplete("widget").is(":visible");
              })
              .click(function () {
                  input.focus();

                  // Close if already visible
                  if (wasOpen) {
                      return;
                  }

                  // Pass empty string as value to search for, displaying all results
                  input.autocomplete("search", "");
              });
        },

        _source: function (request, response) {
            var matcher = new RegExp($.ui.autocomplete.escapeRegex(request.term), "i");
            response(this.element.children("option").map(function () {
                var text = $(this).text();

                if (this.value && (!request.term || matcher.test(text)))                       
                    return {
                        label: text,
                        value: text,
                        option: this
                    };
            }));
        },

        _removeIfInvalid: function (event, ui) {

            // Selected an item, Axis1 and so on are my dropdown ids
          //Changes are done there ...this event will work when you focus out.
            if (ui.item) {
                if (ui.item.option.parentNode.id=="Axis1") 
                {
                   enter code here
                }
                else if (ui.item.option.parentNode.id == "Axis1Code1") {                   
enter code here
                }
                else if (ui.item.option.parentNode.id == "Axis1Code2") {                   

enter code here
                }
                else if (ui.item.option.parentNode.id == "Axis1Code3") {                  

enter code here
                }
                else if (ui.item.option.parentNode.id == "Axis1Code4") {                  

enter code here
                }
                return;
            }

            // Search for a match (case-insensitive)

            var value = this.input.val(),                    
              valueLowerCase = value.toLowerCase(),
              valid = false;               
            this.element.children("option").each(function () {
                if ($(this).text().toLowerCase() === valueLowerCase) {
                    this.selected = valid = true;                       
                    return false;
                }
            });

            // Found a match, nothing to do
            if (valid) {                   
                return;                   
            }

            // Remove invalid value
            this.input
              .val("")
              .attr("title", value + " didn't match any item")
              .tooltip("open");
            this.element.val("");
            this._delay(function () {
                this.input.tooltip("close").attr("title", "");
            }, 2500);
            this.input.autocomplete("instance").term = "";
        },

        _destroy: function () {
            this.wrapper.remove();
            this.element.show();
        }
    });
})(jQuery);

关于jquery - 使 MVC 4 Razor 下拉列表可编辑的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24863210/

相关文章:

javascript - 使用 jquery UI 下一个按钮提交输入字段值,php 回显结果

javascript - 如何让 "am"或 "pm"指示符与 HTML5 时间输入元素一起显示?

javascript - 我怎样才能一次捕捉到 2+ 个按键?

javascript - jQuery 函数不会在第一次单击时触发

javascript - 发送表单数据时显示ajax不正确的结果

javascript - 如何将文本框值设置为隐藏字段

php - Intex XDK 的 Ajax 连接失败

Javascript 更新数组值(如果存在),否则将新数组推送到对象

javascript - 按字母顺序对 DIV 进行排序而不销毁和重新创建它们?

jquery - jest 在调用 jquery 选择器的第三方函数上失败