2

ASP.NET/C# で再利用できるように、jQuery UI オートコンプリート コンボボックスを実装しようとしています。

基本的なオートコンプリートだけで問題なく使用できましたが、コンボボックスを使用しようとすると混乱します。

JSON でキーと値のペアを返すときにハンドラーがあります。

次に、異なるデータを取得する複数のコンボボックスが必要です。必要なハンドラーは 1 つだけなので、ソースメソッドを使用して操作しているコントロールのクエリ文字列に参照を渡すことを考えていました。

私が実際にリモートで見つけた唯一の例はthisですが、それは私には正しくないようで、再利用できず、重複したコードがあるようです。

jQuery サイトの例は以下ですが、ソースをリモート ソースを使用するように変更すると、コンボ ボックスがいっぱいになりません。

    (function( $ ) {
    $.widget( "ui.combobox", {
        _create: function() {
            var input,
                self = this,
                select = this.element.hide(),
                selected = select.children( ":selected" ),
                value = selected.val() ? selected.text() : "",
                wrapper = this.wrapper = $( "<span>" )
                    .addClass( "ui-combobox" )
                    .insertAfter( select );

            input = $( "<input>" )
                .appendTo( wrapper )
                .val( value )
                .addClass( "ui-state-default ui-combobox-input" )
                .autocomplete({
                    delay: 0,
                    minLength: 0,
                    source: function( request, response ) {
                        var matcher = new RegExp( $.ui.autocomplete.escapeRegex(request.term), "i" );
                        response( select.children( "option" ).map(function() {
                            var text = $( this ).text();
                            if ( this.value && ( !request.term || matcher.test(text) ) )
                                return {
                                    label: text.replace(
                                        new RegExp(
                                            "(?![^&;]+;)(?!<[^<>]*)(" +
                                            $.ui.autocomplete.escapeRegex(request.term) +
                                            ")(?![^<>]*>)(?![^&;]+;)", "gi"
                                        ), "<strong>$1</strong>" ),
                                    value: text,
                                    option: this
                                };
                        }) );
                    },
                    select: function( event, ui ) {
                        ui.item.option.selected = true;
                        self._trigger( "selected", event, {
                            item: ui.item.option
                        });
                    },
                    change: function( event, ui ) {
                        if ( !ui.item ) {
                            var matcher = new RegExp( "^" + $.ui.autocomplete.escapeRegex( $(this).val() ) + "$", "i" ),
                                valid = false;
                            select.children( "option" ).each(function() {
                                if ( $( this ).text().match( matcher ) ) {
                                    this.selected = valid = true;
                                    return false;
                                }
                            });
                            if ( !valid ) {
                                // remove invalid value, as it didn't match anything
                                $( this ).val( "" );
                                select.val( "" );
                                input.data( "autocomplete" ).term = "";
                                return false;
                            }
                        }
                    }
                })
                .addClass( "ui-widget ui-widget-content ui-corner-left" );

            input.data( "autocomplete" )._renderItem = function( ul, item ) {
                return $( "<li></li>" )
                    .data( "item.autocomplete", item )
                    .append( "<a>" + item.label + "</a>" )
                    .appendTo( ul );
            };

            $( "<a>" )
                .attr( "tabIndex", -1 )
                .attr( "title", "Show All Items" )
                .appendTo( wrapper )
                .button({
                    icons: {
                        primary: "ui-icon-triangle-1-s"
                    },
                    text: false
                })
                .removeClass( "ui-corner-all" )
                .addClass( "ui-corner-right ui-combobox-toggle" )
                .click(function() {
                    // close if already visible
                    if ( input.autocomplete( "widget" ).is( ":visible" ) ) {
                        input.autocomplete( "close" );
                        return;
                    }

                    // work around a bug (likely same cause as #5265)
                    $( this ).blur();

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

        destroy: function() {
            this.wrapper.remove();
            this.element.show();
            $.Widget.prototype.destroy.call( this );
        }
    });
})( jQuery );

$(function() {
    $( "#combobox" ).combobox();
    $( "#toggle" ).click(function() {
        $( "#combobox" ).toggle();
    });
});

理想的には、この段階で:$( "#combobox" ).combobox();リモート データ ソースを指定したいのですが、それをしようとすると$( "#combobox" ).combobox( { source: "handler.ashx" } );、コンボボックスがいっぱいになりません。上記のセクションを編集してautocompleteすべてのコードを削除した場合にのみ動作regexさせることができますが、現在のコンボボックスを参照してその値を取得するにはどうすればよいですか? 私は本当に混乱しています。これは単純でなければならず、物事を複雑にしすぎています...何か助けてください?!

4

1 に答える 1

5

コンボボックスのデモは基本的<select>に、ページ上の既存の要素を強化することを目的としています。そのため、リモート データ ソースにはあまり適していません。ボタン付きのスタイル付き入力だけが必要な場合は、多くのサンプル コードを切り取ることができます。

(function ($) {
    $.widget("ui.combobox", {
        _create: function() {
            var wrapper = this.wrapper = $("<span />").addClass("ui-combobox")
                , self = this;

            this.element.wrap(wrapper);

            this.element
                .addClass("ui-state-default ui-combobox-input ui-widget ui-widget-content ui-corner-left")
                .autocomplete($.extend({
                    minLength: 0
                }, this.options));

            $("<a />")
                .insertAfter(this.element)
                .button({
                    icons: {
                        primary: "ui-icon-triangle-1-s"
                    },
                    text: false
                })
                .removeClass("ui-corner-all")
                .addClass("ui-corner-right ui-combobox-toggle")
                .click(function () {
                    if (self.element.autocomplete("widget" ).is(":visible")) {
                        self.element.autocomplete("close");
                        return;
                    }

                    $(this).blur();

                    self.element.autocomplete("search", "");
                    self.element.focus();
                });
        },

        destroy: function() {
            this.wrapper.remove();
            $.Widget.prototype.destroy.call(this);
        }
    });
})(jQuery);

使用法:

$(function() {
    $("#combo").combobox({
        source: 'my_source'
    });
});​

例: http://jsfiddle.net/4extL/45/

もう 1 つの方法は、生成された HTML を含む部分ビューを作成し、autocomplete通常どおりウィジェットを適用することです。これの欠点は、jQuery プラグインのように適切に劣化しないことです。

于 2012-08-21T13:09:58.123 に答える