2014-07-21 40 views
1

mvc razor editable DropDownList問題與製作MVC 4剃刀DROPDOWNLIST編輯

我使用上述庫,使在MVC剃刀下拉列表編輯,但它讓我看到下拉值,而不是文本,我需要顯示的下拉text.Any幫助將不勝感激。

+0

發佈您的代碼,調查 –

+0

提供更多的說明關於你的問題 –

+0

我的問題是我需要一個MVC4 Razor視圖中的可編輯下拉菜單,但一般下拉菜單隻能選擇即你可以y從下拉菜單中選擇記錄,當我使用上面提到的代碼時,它使下拉列表可編輯,但顯示下拉值而不是下拉文本。 –

回答

1

我已經使用下面的鏈接進行下拉編輯在MVC剃刀一些改變

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);