How do you set a default value with jquery auto complete combobox?

后端 未结 14 1814
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-28 19:01

When using the jquery ui autocomplete combobox, can you set a default value for the combobox?

相关标签:
14条回答
  • 2020-12-28 19:22

    Based on Mathieu Steele answer, instead of using this:

    input.val( $("#combobox option:selected").text());
    

    I use this:

    input.val( $(select).find("option:selected").text());
    

    Widget is now reusable and DRY :)

    0 讨论(0)
  • 2020-12-28 19:22

    Call the option method to set the box's value after you've initialized it.

    $('#combo').autocomplete( "option" , optionName , [value] )
    
    0 讨论(0)
  • 2020-12-28 19:22

    I stumped this error and cannot fix it OnLoad event whatever I coded (Probably on 3 hours). At last luckily I acrossed http://www.onemoretake.com/2011/04/17/a-better-jquery-ui-combo-box/ web page(Thx for @Dan for solving my headache) and saw the real missing part is not on "OnLoad", on ui definition function itself. Standart definition function on the official Jquery Ui web page does not contain programmatically select option.

    Here is the function should added to definition function :

    //allows programmatic selection of combo using the option value
            setValue: function (value) {
                var $input = this.input;
                $("option", this.element).each(function () {
                    if ($(this).val() == value) {
                        this.selected = true;
                        $input.val(this.text);
                        return false;
                    }
                });
            }
    

    also i produced another function to change selection via option text not option value

    //allows programmatic selection of combo using the option text
                setValueText: function (valueText) {
                    var $input = this.input;
                    var selectedText;                   
                    $("option", this.element).each(function () {
                        if ($(this).text() == valueText) {
                            this.selected = true;
                            $input.val(this.text);                                                    
                            return false;
                        }
                    });                        
                }
    

    You can use these functions on OnLoad or another function as :

    $("#yourComboBoxID").combobox("setValue", "Your Option Value");
    

    or

    $("#yourComboBoxID").combobox("setValueText", "Your Option Text");
    
    0 讨论(0)
  • 2020-12-28 19:25

    I tried answer this in the way that I would do it in my own project.

    I read through the demo source code from the page you posted. In the jquery code that generates the autocomplete combobox, I added one line of code that processes when the combobox is created that reads the selected value from your "select" element. This way you can programmatically set the default value (like you would normally if you were not using the autocomplete combobox)

    Here is the one line I added:

    input.val( $("#combobox option:selected").text());
    

    Plain and simple. It sets the value of input to the text value of the selected element from #combobox. Naturally, you will want to update the id elements to match your individual project or page.

    Here it is in context:

    (function($) {
        $.widget("ui.combobox", {
            _create: function() {
                var self = this;
                var select = this.element.hide();
                var input = $("<input>")
                    .insertAfter(select)
                    .autocomplete({
                        source: function(request, response) {
                            var matcher = new RegExp(request.term, "i");
                            response(select.children("option").map(function() {
                                var text = $(this).text();
                                if (this.value && (!request.term || matcher.test(text)))
                                    return {
                                        id: this.value,
                                        label: text.replace(new RegExp("(?![^&;]+;)(?!<[^<>]*)(" + $.ui.autocomplete.escapeRegex(request.term) + ")(?![^<>]*>)(?![^&;]+;)", "gi"), "<strong>$1</strong>"),
                                        value: text
                                    };
                            }));
                        },
                        delay: 0,
                        change: function(event, ui) {
                            if (!ui.item) {
                                // remove invalid value, as it didn't match anything
                                $(this).val("");
                                return false;
                            }
                            select.val(ui.item.id);
                            self._trigger("selected", event, {
                                item: select.find("[value='" + ui.item.id + "']")
                            });
    
                        },
                        minLength: 0
                    })
                    .addClass("ui-widget ui-widget-content ui-corner-left");
    
    
    
                // This line added to set default value of the combobox
                input.val( $("#combobox option:selected").text());
    
    
    
    
    
                $("<button>&nbsp;</button>")
                .attr("tabIndex", -1)
                .attr("title", "Show All Items")
                .insertAfter(input)
                .button({
                    icons: {
                        primary: "ui-icon-triangle-1-s"
                    },
                    text: false
                }).removeClass("ui-corner-all")
                .addClass("ui-corner-right ui-button-icon")
                .click(function() {
                    // close if already visible
                    if (input.autocomplete("widget").is(":visible")) {
                        input.autocomplete("close");
                        return;
                    }
                    // pass empty string as value to search for, displaying all results
                    input.autocomplete("search", "");
                    input.focus();
                });
            }
        });
    
    })(jQuery);
    
    0 讨论(0)
  • 2020-12-28 19:25

    Answer #1 is very close, but you cannot hard-code the element ID if you want to keep the function generic. Add this line instead and enjoy!

    input.val(jQuery("#"+select.attr("id")+" :selected").text() );
    
    0 讨论(0)
  • 2020-12-28 19:27

    Add below One Line of Code before " this._on( this.input, { " line

    this.input[0].defaultValue = value;
    

    after create code in autocomplete combobox script. You can also reset with reset button of html.

    0 讨论(0)
提交回复
热议问题